CatalogSets2.GetCatalogSets Method (PIA)
Use this method to return a list of all catalog sets.
Definition
[Visual Basic .NET]
Imports Microsoft.CommerceServer.Interop.Catalog
Imports ADODB26Lib ‘ for _Recordset
…
Public Function GetCatalogSets() As _Recordset
[C#]
using Microsoft.CommerceServer.Interop.Catalog;
using ADODB26Lib; //For _Recordset
…
public _Recordset GetCatalogSets();
Return Values
[Visual Basic .NET] If this method completes successfully, it returns the _Recordset interface of a Recordset object that contains the list of all catalog sets.
[C#] This method returns an ADODB26Lib._Recordset interface to a Recordset object that will contain the list of catalog sets.
Exceptions
This method may throw one of many mapped exceptions or an exception of type COMException. See Standard COM Errors for additional details.
Remarks
This method returns a forward-only Recordset object with a row for each catalog set and the following fields:
Field | Type | Description |
---|---|---|
CatalogSetID | GUID | None |
CatalogSetName | String, 255 characters | None |
CatalogSetDescription | String, 255 characters | None |
bWildCard | Integer | A Boolean that indicates whether this catalog set automatically includes all catalogs, including any new catalogs that might be created in the future. A value of True indicates that this catalog set includes all existing catalogs. A value of False indicates that this catalog set only includes a specific set of catalogs. |
Requirements
Namespace: Microsoft.CommerceServer.Interop.Catalog
Platforms: Windows 2000, Windows Server 2003
Assembly: cs_ctlgsets (in cs_ctlgsets.dll)
See Also
Copyright © 2005 Microsoft Corporation.
All rights reserved.