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

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

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