DataTable.ExtendedProperties 属性

获取自定义用户信息的集合。

**命名空间:**System.Data
**程序集:**System.Data(在 system.data.dll 中)

语法

声明
Public ReadOnly Property ExtendedProperties As PropertyCollection
用法
Dim instance As DataTable
Dim value As PropertyCollection

value = instance.ExtendedProperties
public PropertyCollection ExtendedProperties { get; }
public:
property PropertyCollection^ ExtendedProperties {
    PropertyCollection^ get ();
}
/** @property */
public PropertyCollection get_ExtendedProperties ()
public function get ExtendedProperties () : PropertyCollection

属性值

包含自定义用户信息的 PropertyCollection

备注

使用 ExtendedProperties 将自定义信息添加到 DataTable 中。用 Add 方法添加信息。用 Item 方法检索信息。

扩展属性必须是 String 类型。当以 XML 的形式写 DataTable 时,不保持非 String 类型的属性。

示例

下面的示例通过 ExtendedProperties 属性将时间戳值添加到 DataTable 中。

Private Sub GetAndSetExtendedProperties(ByVal myTable As DataTable)
   ' Add an item to the collection.
   myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now)
   ' Print the item.
   Console.WriteLine(myTable.ExtendedProperties.Item("TimeStamp"))
End Sub
private void GetAndSetExtendedProperties(DataTable myTable){
   // Add an item to the collection.
   myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now);
   // Print the item.
   Console.WriteLine(myTable.ExtendedProperties["TimeStamp"]);
}

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

DataTable 类
DataTable 成员
System.Data 命名空间

其他资源

创建和使用 DataTables