Click or drag to resize
JsonObjectContainsKeyNotNull 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.
Remarks
Equivalent to Me.ContainsKey(key) AndAlso Me(key) IsNot Nothing.
See Also