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