Information Property
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
Gets a CatalogDefinitionsDataSet containing definition information for the current instance.
Namespace: Microsoft.CommerceServer.Catalog
Assembly: Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)
Syntax
'Declaration
Public ReadOnly Property Information As CatalogDefinitionsDataSet
'Usage
Dim instance As CatalogDefinition
Dim value As CatalogDefinitionsDataSet
value = instance.Information
public CatalogDefinitionsDataSet Information { get; }
public:
property CatalogDefinitionsDataSet^ Information {
CatalogDefinitionsDataSet^ get ();
}
public function get Information () : CatalogDefinitionsDataSet
Property Value
Type: Microsoft.CommerceServer.Catalog..::.CatalogDefinitionsDataSet
A CatalogDefinitionsDataSet containing definition information for the current instance.
Remarks
Information is a CatalogDefinitionsDataSet containing a single row of information about the current definition. You can change the user defined definition attributes for Information then call Save to save the changes to the definition. You cannot add rows or delete rows from this dataset.
Examples
// Create the property
property = catalogContext.CreateProperty(propertyName, catalogDataType, maxLength);
// Set the LanguageSensitive property to convert the property to multilingual
property.Information.CatalogProperties[0].LanguageSensitive = true;
// Call property.Save to Save the changes to the catalog system
property.Save();
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.