Table of Contents

Class DataItemModificationsInfo

Namespace
Dynamicweb.Extensibility
Assembly
Dynamicweb.dll
Provides information about modifications made in a single data item.
[Obsolete("Do not use")]
public class DataItemModificationsInfo
Inheritance
DataItemModificationsInfo
Inherited Members

Constructors

DataItemModificationsInfo()

Initializes a new instance of an object.
public DataItemModificationsInfo()

DataItemModificationsInfo(string, string, DataItemState)

Initializes a new instance of an object.
public DataItemModificationsInfo(string id, string typeID, DataItemState state)

Parameters

id string
The ID of the data item.
typeID string
The ID of the data item type.
state DataItemState
The state of the data item.

Properties

Fields

Gets or sets the collection of fields that has been modified.
public IDictionary<string, object> Fields { get; set; }

Property Value

IDictionary<string, object>

ID

Gets or sets the ID of the data item.
public string ID { get; set; }

Property Value

string

State

Gets or sets the state of the data item.
public DataItemState State { get; set; }

Property Value

DataItemState

TypeID

Gets or sets the ID of the data item type.
public string TypeID { get; set; }

Property Value

string
To top