Table of Contents

Class DataItemType

Namespace
Dynamicweb.Deployment
Assembly
Dynamicweb.Core.dll

Represents a definition of a specific type of data item.

public class DataItemType
Inheritance
DataItemType
Inherited Members

Constructors

DataItemType(string)

Initializes a new instance of the DataItemType class.

public DataItemType(string id)

Parameters

id string

The identifier.

Properties

DataGroupId

Gets or sets the data group identifier.

public string DataGroupId { get; set; }

Property Value

string

The data group identifier.

Id

Gets or sets the identifier.

public string Id { get; set; }

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.

ViewMode

Gets or sets the view mode.

public ViewMode ViewMode { get; set; }

Property Value

ViewMode

The view mode.

To top