Struct InputJSONMember
One key and value pair inside a InputJSONNode of type Object.
Inherited Members
Namespace: Scylla.Input
Assembly: ScyllaInput.dll
Syntax
public readonly struct InputJSONMember
Constructors
InputJSONMember(string, InputJSONNode)
Initializes a member.
Declaration
public InputJSONMember(string key, InputJSONNode value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The member name. |
| InputJSONNode | value | The member value. |
Properties
Key
Gets the member name, compared ordinally and case-sensitively as JSON requires.
Declaration
public string Key { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
Gets the member value. Never null; an absent value is a Null-typed node.
Declaration
public InputJSONNode Value { get; }
Property Value
| Type | Description |
|---|---|
| InputJSONNode |