Table of Contents

Class DataItemIdentifier

Namespace
Dynamicweb.Deployment
Assembly
Dynamicweb.Deployment.dll
Represents a data item identifier
public class DataItemIdentifier
Inheritance
DataItemIdentifier
Inherited Members

Constructors

DataItemIdentifier(string, string, string)

Initializes a new instance of the DataItemIdentifier class.
public DataItemIdentifier(string dataGroupId, string dataItemTypeId, string dataItemId)

Parameters

dataGroupId string
The data group identifier.
dataItemTypeId string
The data item type identifier.
dataItemId string
The data item identifier.

Properties

DataGroupId

Gets or sets the data group identifier.
public string DataGroupId { get; set; }

Property Value

string
The data group identifier.

DataItemId

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

Property Value

string
The data item identifier.

DataItemTypeId

Gets or sets the data item type identifier.
public string DataItemTypeId { get; set; }

Property Value

string
The data item type identifier.
To top