Table of Contents

Class DataItemType

Namespace
Dynamicweb.DataPortability.DataDefinitions
Assembly
Dynamicweb.Core.dll

Defines a type of data

public class DataItemType
Inheritance
DataItemType
Inherited Members

Constructors

DataItemType(string, DataGroup)

Initializes a new instance of the DataItemType class.

public DataItemType(string id, DataGroup group)

Parameters

id string

The identifier.

group DataGroup

Properties

Group

Gets the group.

public DataGroup Group { get; }

Property Value

DataGroup

The group.

Id

Gets the identifier.

public string Id { get; }

Property Value

string

The identifier.

Name

Gets or sets the name.

public string Name { get; set; }

Property Value

string

The name.

ProviderParameters

Gets or sets the provider parameters.

public IDictionary<string, string> ProviderParameters { get; set; }

Property Value

IDictionary<string, string>

The provider parameters.

ProviderTypeName

Gets or sets the name of the provider type.

public string ProviderTypeName { get; set; }

Property Value

string

The name of the provider type.

To top