MongoDB.Driver.Builders.MapReduceOptionsBuilder.SetKeepTemp C# (CSharp) Method

SetKeepTemp() public method

Sets whether to keep the temp collection (obsolete in 1.8.0+).
public SetKeepTemp ( bool value ) : MapReduceOptionsBuilder
value bool Whether to keep the temp collection.
return MapReduceOptionsBuilder
        public MapReduceOptionsBuilder SetKeepTemp(bool value)
        {
            _document["keeptemp"] = value;
            return this;
        }