Interface IEntryInformation
NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.
Information about entries in the catalog
Namespace: EPiServer.Commerce.Catalog
Assembly: EPiServer.Business.Commerce.dll
Version: 13.30.0Syntax
public interface IEntryInformation
Methods
GetCustomProperties(EntryContentBase)
Get the names and values of any custom properties used to differentiate this item. For a variant, examples could be size or color.
Declaration
IDictionary<string, string> GetCustomProperties(EntryContentBase entry)
Parameters
Type | Name | Description |
---|---|---|
EntryContentBase | entry | The entry to get custom properties for. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | A dictionary of custom the properties, and their values. The values should in a format suitable for presentation to a user. |
GetProductUrl(EntryContentBase)
Get the product URL which associates with this item.
Declaration
string GetProductUrl(EntryContentBase entry)
Parameters
Type | Name | Description |
---|---|---|
EntryContentBase | entry | The entry to get product URL for. |
Returns
Type | Description |
---|---|
System.String | The URL of the product associates with this item. |