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 Overridable Property DataSet As TDataSet
'Usage
Dim instance As CatalogObjectCollection
Dim value As TDataSet
value = instance.DataSet
instance.DataSet = value
public virtual TDataSet DataSet { get; internal set; }
public:
virtual property TDataSet DataSet {
TDataSet get ();
void set (TDataSet value);
}
public function get DataSet () : TDataSet
public function set DataSet (value : TDataSet)
Property Value
Type: TDataSet
The DataSet for the CatalogObjectCollection
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
CatalogObjectCollection<(Of <(TObject, TDataSet>)>) Class