C# Класс Felinesoft.UmbracoCodeFirst.DataTypes.MultiselectDataType

A base class for data types which select multiple values from a list of prevalues
Наследование: SelectListDataType, IUmbracoNtextDataType
Показать файл Открыть проект

Открытые методы

Метод Описание
Initialise ( string dbValue ) : void

Initialises the instance from a comma-separated list of values

Serialise ( ) : string

Serialises the instance to a comma-separated list of values

ToString ( ) : string
this ( int index ) : Item

Gets an item by its index

this ( string value ) : Item

Gets an item by its value

Описание методов

Initialise() публичный Метод

Initialises the instance from a comma-separated list of values
public Initialise ( string dbValue ) : void
dbValue string a comma-separated list of values
Результат void

Serialise() публичный Метод

Serialises the instance to a comma-separated list of values
public Serialise ( ) : string
Результат string

ToString() публичный Метод

public ToString ( ) : string
Результат string

this() публичный Метод

Gets an item by its index
public this ( int index ) : Item
index int
Результат Item

this() публичный Метод

Gets an item by its value
public this ( string value ) : Item
value string
Результат Item