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));
        }