JsonDynamicContainsKeyNotNull Method |
Tests whether the object contains a member with the specified key and which is not null.
Namespace: Dextronet.JsonieAssembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax public bool ContainsKeyNotNull(
string key
)
Public Function ContainsKeyNotNull (
key As String
) As Boolean
Parameters
- key
- Type: SystemString
The key of the member to find.
Return Value
Type:
Booleantrue if member with specified key exists and is not null.
Exceptions Remarks Equivalent to Me.ContainsKey(key) AndAlso Me(key) IsNot Nothing.
See Also