DataColumn::ExtendedProperties Property
.NET Framework (current version)
Gets the collection of custom user information associated with a DataColumn.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property PropertyCollection^ ExtendedProperties { PropertyCollection^ get(); }
The ExtendedProperties property lets you store custom information with the object. For example, you may store a time when the data should be refreshed.
Extended properties must be of type String. Properties that are not of type String are not persisted when the DataColumn is written as XML.
The following example adds a custom property to the PropertyCollection returned by the ExtendedProperties property. The second example retrieves the custom property.
.NET Framework
Available since 1.1
Available since 1.1
Show: