DataSet Property
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
Gets the internal dataset used in this object collection.
Namespace: Microsoft.CommerceServer.Catalog
Assembly: Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)
Syntax
'Declaration
Public ReadOnly Property DataSet As TDataSet
'Usage
Dim instance As DataSetBasedCollection
Dim value As TDataSet
value = instance.DataSet
public TDataSet DataSet { get; }
public:
property TDataSet DataSet {
TDataSet get ();
}
public function get DataSet () : TDataSet
Property Value
Type: TDataSet
The DataSet for the DataSetBasedCollection.
Remarks
TDataSet is the dataset representing the content of this collection.
The DataSet, which is an in-memory cache of data retrieved from a data source, is a major component of the ADO.NET architecture. The DataSet consists of a collection of objects that you can relate to each other.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DataSetBasedCollection<(Of <(TObject, TDataSet>)>) Class