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

HasID() public static method

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