Arango.Client.DictionaryExtensions.HasTo C# (CSharp) 메소드

HasTo() 공개 정적인 메소드

Checks if `_to` field is present and has valid format.
public static HasTo ( object>.this dictionary ) : bool
dictionary object>.this
리턴 bool
        public static bool HasTo(this Dictionary<string, object> dictionary)
        {
            return !string.IsNullOrEmpty(To(dictionary));
        }