Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataColumn::ExtendedProperties Property

 

Gets the collection of custom user information associated with a DataColumn.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
[BrowsableAttribute(false)]
property PropertyCollection^ ExtendedProperties {
	PropertyCollection^ get();
}

Property Value

Type: System.Data::PropertyCollection^

A PropertyCollection of custom information.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft