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;
        }