Arango.Client.DictionaryExtensions.HasRev C# (CSharp) Method

HasRev() public static method

Checks if `_rev` field is present and has valid format.
public static HasRev ( object>.this dictionary ) : bool
dictionary object>.this
return bool
        public static bool HasRev(this Dictionary<string, object> dictionary)
        {
            return !string.IsNullOrEmpty(Rev(dictionary));
        }