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

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

Retrieves value of `_key` field. If the field is missing or has invalid format null value is returned.
public static Key ( object>.this dictionary ) : string
dictionary object>.this
Результат string
        public static string Key(this Dictionary<string, object> dictionary)
        {
            string key;

            try
            {
                key = String(dictionary, "_key");

                if (!ADocument.IsKey(key))
                {
                    key = null;
                }
            }
            catch (Exception)
            {
                key = null;
            }

            return key;
        }

Same methods

DictionaryExtensions::Key ( object>.this dictionary, string key ) : object>.Dictionary