Arango.Client.ACollection.WithRevisions C# (CSharp) Method

WithRevisions() public method

Determines whether to include document revision ids in the checksum calculation. Default value: false.
public WithRevisions ( bool value ) : ACollection
value bool
return ACollection
        public ACollection WithRevisions(bool value)
        {
            // needs to be in string format
            _parameters.String(ParameterName.WithRevisions, value.ToString().ToLower());

            return this;
        }