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

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

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

            try
            {
                to = String(dictionary, "_to");

                if (!ADocument.IsID(to))
                {
                    to = null;
                }
            }
            catch (Exception)
            {
                to = null;
            }

            return to;
        }

Same methods

DictionaryExtensions::To ( object>.this dictionary, string id ) : object>.Dictionary