Arango.Client.DictionaryExtensions.HasID C# (CSharp) Метод

HasID() публичный статический Метод

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