DataSet.ExtendedProperties プロパティ
DataSet に関連付けられている、カスタマイズされたユーザー情報のコレクションを取得します。
Public ReadOnly Property ExtendedProperties As PropertyCollection
[C#]
public PropertyCollection ExtendedProperties {get;}
[C++]
public: __property PropertyCollection* get_ExtendedProperties();
[JScript]
public function get ExtendedProperties() : PropertyCollection;
プロパティ値
すべてのカスタム ユーザー情報が含まれる PropertyCollection 。
解説
ExtendedProperties プロパティを使用すると、カスタム情報を DataSet と共に格納できます。たとえば、データを更新する必要がある場合は、時刻を格納できます。
DataSet を XML として書き込むときに拡張プロパティを永続化する場合は、拡張プロパティを String 型にする必要があります。
使用例
[Visual Basic, C#, C++] ExtendedProperties プロパティによって返される PropertyCollection にカスタム プロパティを追加する例を次に示します。2 番目の例では、カスタム プロパティを取得します。
Private Sub SetProperty(myDataSet As DataSet)
myDataSet.ExtendedProperties.Add("TimeStamp", DateTime.Now)
End Sub
Private Sub GetProperty(myDataSet As DataSet)
Console.WriteLine(myDataSet.ExtendedProperties("TimeStamp").ToString())
End Sub
[C#]
private void SetProperty(DataSet myDataSet){
myDataSet.ExtendedProperties.Add("TimeStamp", DateTime.Now);
}
private void GetProperty(DataSet myDataSet){
Console.WriteLine(myDataSet.ExtendedProperties["TimeStamp"].ToString());
}
[C++]
private:
void SetProperty(DataSet* myDataSet){
myDataSet->ExtendedProperties->Add(S"TimeStamp",__box(DateTime::Now));
}
void GetProperty(DataSet* myDataSet){
Console::WriteLine(myDataSet->ExtendedProperties->Item[S"TimeStamp"]);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET