Click or drag to resize
JsonDynamicContainsKeyNotNull Method
Tests whether the object contains a member with the specified key and which is not null.

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

Parameters

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

Return Value

Type: Boolean
true if member with specified key exists and is not null.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
InvalidCastExceptionIf this object does not wrap JsonObject.
Remarks
Equivalent to Me.ContainsKey(key) AndAlso Me(key) IsNot Nothing.
See Also