Interface IJqGridJsonElement
Provides an abstraction for a specific JSON value within an object.
Namespace: Lib.AspNetCore.Mvc.JqGrid.Core.Json
Assembly: Lib.AspNetCore.Mvc.JqGrid.Core.dll
Syntax
public interface IJqGridJsonElement
Properties
Item[String]
Gets the IJqGridJsonElement with the specified key.
Declaration
IJqGridJsonElement this[string key] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The specified key. |
Property Value
Type | Description |
---|---|
IJqGridJsonElement |
Type
Gets the node type for this IJqGridJsonElement.
Declaration
JqGridJsonElementType Type { get; }
Property Value
Type | Description |
---|---|
JqGridJsonElementType |
Methods
EnumerateArray()
Gets an enumerator to enumerate the values in the JSON array represented by this element.
Declaration
IEnumerable<IJqGridJsonElement> EnumerateArray()
Returns
Type | Description |
---|---|
IEnumerable<IJqGridJsonElement> | An enumerator to enumerate the values in the JSON array represented by this element. |
GetString()
Gets the value of the element as a
Declaration
string GetString()
Returns
Type | Description |
---|---|
System.String | The value of the element as a |