C# Class Felinesoft.UmbracoCodeFirst.DataTypes.MultiselectDataType

A base class for data types which select multiple values from a list of prevalues
Inheritance: SelectListDataType, IUmbracoNtextDataType
Afficher le fichier Open project: DanMannMann/UmbracoCodeFirst

Méthodes publiques

Méthode Description
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

Method Details

Initialise() public méthode

Initialises the instance from a comma-separated list of values
public Initialise ( string dbValue ) : void
dbValue string a comma-separated list of values
Résultat void

Serialise() public méthode

Serialises the instance to a comma-separated list of values
public Serialise ( ) : string
Résultat string

ToString() public méthode

public ToString ( ) : string
Résultat string

this() public méthode

Gets an item by its index
public this ( int index ) : Item
index int
Résultat Item

this() public méthode

Gets an item by its value
public this ( string value ) : Item
value string
Résultat Item