JsonValueItem(StringSegment) 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[
	StringSegment propertyName
] { get; }
Public ReadOnly Default Property Item ( 
	propertyName As StringSegment
) As JsonValue
	Get
public:
property JsonValue default[StringSegment propertyName] {
	JsonValue get (StringSegment propertyName);
}
member Item : JsonValue with get
- propertyName  StringSegment
- 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.