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

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

Determines whether to include document body data in the checksum calculation. Default value: false.
public WithData ( bool value ) : ACollection
value bool
Результат ACollection
        public ACollection WithData(bool value)
        {
            // needs to be in string format
            _parameters.String(ParameterName.WithData, value.ToString().ToLower());

            return this;
        }