Table of Contents

Class DataItem

Namespace
Dynamicweb.DataPortability
Assembly
Dynamicweb.Core.dll

Represents a data entry.

public class DataItem
Inheritance
DataItem
Inherited Members

Constructors

DataItem()

Initializes a new instance of the DataItem class.

public DataItem()

DataItem(string)

Initializes a new instance of the DataItem class.

public DataItem(string id)

Parameters

id string

Properties

Id

Gets the identifier.

public string Id { get; }

Property Value

string

The identifier.

Properties

Gets the data values.

public IDictionary<string, object> Properties { get; }

Property Value

IDictionary<string, object>

Key/value pairs of data values.

To top