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.

DataSet::ExtendedProperties Property

 

Gets the collection of customized user information associated with the DataSet.

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 with all custom user information.

The ExtendedProperties property enables you to store custom information with the DataSet. For example, you might store a time when the data should be refreshed.

Extended properties must be of type String if you want them persisted when the DataSet 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