MongoDB.Driver.Builders.MapReduceOptionsBuilder.SetVerbose C# (CSharp) Méthode

SetVerbose() public méthode

Sets whether the server should be more verbose when logging map/reduce operations.
public SetVerbose ( bool value ) : MapReduceOptionsBuilder
value bool Whether the server should be more verbose.
Résultat MapReduceOptionsBuilder
        public MapReduceOptionsBuilder SetVerbose(bool value)
        {
            _document["verbose"] = value;
            return this;
        }