Table of Contents

Class CustomFieldOptions

Namespace
Dynamicweb.Security.UserManagement.Common.CustomFields
Assembly
Dynamicweb.Core.dll

Represents custom field options

public class CustomFieldOptions : List<KeyValuePair<string, object>>, IList<KeyValuePair<string, object>>, ICollection<KeyValuePair<string, object>>, IReadOnlyList<KeyValuePair<string, object>>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IList, ICollection, IEnumerable
Inheritance
CustomFieldOptions
Implements
Inherited Members
Extension Methods

Properties

DataType

Gets or sets custom field type

public Types DataType { get; set; }

Property Value

Types

DefaultValue

Gets default value

public object DefaultValue { get; }

Property Value

object

Methods

GetOptions(string)

Gets custom field options

public static CustomFieldOptions GetOptions(string optionsXml)

Parameters

optionsXml string

String data with optionsXml xml-element data

Returns

CustomFieldOptions

GetOptionsXml()

Gets xml content of options xml node

public string GetOptionsXml()

Returns

string

String value with xml data

To top