C# Класс Skybrud.Umbraco.GridData.GridDictionary

Dictionary representing a configuration for an element in the Umbraco Grid.
Наследование: Skybrud.Umbraco.GridData.Json.GridJsonObject
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
GridDictionary System

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

Метод Описание
ContainsKey ( string key ) : bool

Gets whether the specified key is contained in the dictionary.

Parse ( Newtonsoft.Json.Linq.JObject obj ) : GridDictionary

Parses a dictionary from the specified obj.

this ( string key ) : string

Gets the value of an item with the specified key.

Приватные методы

Метод Описание
GridDictionary ( string>.Dictionary config, Newtonsoft.Json.Linq.JObject obj ) : System

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

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

Gets whether the specified key is contained in the dictionary.
public ContainsKey ( string key ) : bool
key string The key.
Результат bool

Parse() публичный статический Метод

Parses a dictionary from the specified obj.
public static Parse ( Newtonsoft.Json.Linq.JObject obj ) : GridDictionary
obj Newtonsoft.Json.Linq.JObject The instance of JObject to be parsed.
Результат GridDictionary

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

Gets the value of an item with the specified key.
public this ( string key ) : string
key string The key of the dictionary item.
Результат string