Arango.Client.DictionaryExtensions.HasKey C# (CSharp) Method

HasKey() public static method

Checks if `_key` field is present and has valid format.
public static HasKey ( object>.this dictionary ) : bool
dictionary object>.this
return bool
        public static bool HasKey(this Dictionary<string, object> dictionary)
        {
            return !string.IsNullOrEmpty(Key(dictionary));
        }