Click or drag to resize
JsonDynamicContainsKey Method
Tests whether the object contains a member with the specified key. It does not check the value of the member which might be null.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public bool ContainsKey(
	string key
)

Parameters

key
Type: SystemString
The key of the member to find.

Return Value

Type: Boolean
True if member with specified key member is defined in the object.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
InvalidCastExceptionIf this object does not wrap JsonObject.
See Also