Table of Contents

Class ItemInfo

Namespace
Dynamicweb.Ecommerce.Extensibility.Controls
Assembly
Dynamicweb.Ecommerce.dll
ItemInfo class.
public class ItemInfo
Inheritance
ItemInfo
Inherited Members

Constructors

ItemInfo()

Initializes a new instance of the ItemInfo class.
public ItemInfo()

ItemInfo(string, string, string)

Initializes a new instance of the ItemInfo class.
public ItemInfo(string type, string itemId, string text)

Parameters

type string
The type.
itemId string
The item identifier.
text string
The text.

Properties

Id

Gets or sets the identifier.
public string Id { get; set; }

Property Value

string
The identifier.

ItemId

Gets or sets the item identifier.
public string ItemId { get; set; }

Property Value

string
The item identifier.

Text

Gets or sets the text.
public string Text { get; set; }

Property Value

string
The text.

Type

Gets or sets the type.
public string Type { get; set; }

Property Value

string
The type.

Methods

MakeId(string, string)

Makes the identifier.
public static string MakeId(string type, string itemId)

Parameters

type string
The type.
itemId string
The item identifier.

Returns

string
System.String.
To top