Arango.Client.ACollection.AllowUserKeys C# (CSharp) Метод

AllowUserKeys() публичный Метод

Determines whether it is allowed to supply custom key values in the _key attribute of a document. Default value: true.
public AllowUserKeys ( bool value ) : ACollection
value bool
Результат ACollection
        public ACollection AllowUserKeys(bool value)
        {
            _parameters.Bool(ParameterName.KeyOptionsAllowUserKeys, value);

            return this;
        }