Edit

Share via


XmlDataDocument.DataSet Property

Definition

Gets a DataSet that provides a relational representation of the data in the XmlDataDocument.

public:
 property System::Data::DataSet ^ DataSet { System::Data::DataSet ^ get(); };
public System.Data.DataSet DataSet { get; }
member this.DataSet : System.Data.DataSet
Public ReadOnly Property DataSet As DataSet

Property Value

A DataSet that can be used to access the data in the XmlDataDocument using a relational model.

Remarks

The DataSet enables you to access the data in the XmlDataDocument using a relational model. This means that you can handle the data as tables and views, rows and columns, relations, and so on. Changes made in the DataSet are immediately visible in the XmlDataDocument.

Applies to

See also