Arango.Client.ACollection.AllowUserKeys C# (CSharp) Méthode

AllowUserKeys() public méthode

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
Résultat ACollection
        public ACollection AllowUserKeys(bool value)
        {
            _parameters.Bool(ParameterName.KeyOptionsAllowUserKeys, value);

            return this;
        }