C# 클래스 Skybrud.Umbraco.GridData.GridDictionary

Dictionary representing a configuration for an element in the Umbraco Grid.
상속: Skybrud.Umbraco.GridData.Json.GridJsonObject
파일 보기 프로젝트 열기: skybrud/Skybrud.Umbraco.GridData

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