Table of Contents

Class Field

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Data field object with name, key, type and value fields

public class Field : ICloneable
Inheritance
Field
Implements
Inherited Members

Constructors

Field()

Default constructor

public Field()

Field(string, bool, Type)

Constructs new Field object

public Field(string name, bool key, Type type)

Parameters

name string

Name

key bool

Key

type Type

Type

Field(string, bool, Type, object)

Constructs new Field object

public Field(string name, bool key, Type type, object value)

Parameters

name string

Name

key bool

Key

type Type

Type

value object

Value

Properties

Key

Shows if current fiekd is a key field

public bool Key { get; set; }

Property Value

bool

Name

Name

public string Name { get; set; }

Property Value

string

Type

Type of field

public Type Type { get; set; }

Property Value

Type

Value

Field value

public object Value { get; set; }

Property Value

object

Methods

Clone()

Creates new object instance using data of current Field object

public object Clone()

Returns

object

ToString()

Get string representation of current object state

public override string ToString()

Returns

string
To top