JsonValueItem(ReadOnlySpanChar) Property
If the type of this
JsonValue is
Object and
propertyName denotes an existing property,
then gets the value of the specified
propertyName; otherwise, returns
Undefined.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public JsonValue this[
ReadOnlySpan<char> propertyName
] { get; }
Public ReadOnly Default Property Item (
propertyName As ReadOnlySpan(Of Char)
) As JsonValue
Get
public:
property JsonValue default[ReadOnlySpan<wchar_t> propertyName] {
JsonValue get (ReadOnlySpan<wchar_t> propertyName);
}
member Item : JsonValue with get
- propertyName ReadOnlySpanChar
- The name of the property to return its value.
JsonValueThe value of the specified
propertyName, or
Undefined
if
propertyName is invalid or
Type is not
Object.