Arango.Client.DictionaryExtensions.HasTo C# (CSharp) Méthode

HasTo() public static méthode

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