MongoDB.Driver.MapReduceBuilder.Out C# (CSharp) Метод

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

Name of the final collection the results should be stored in.
A temporary collection is still used and then renamed to the target name atomically.
public Out ( String name ) : MapReduceBuilder
name String
Результат MapReduceBuilder
        public MapReduceBuilder Out(String name)
        {
            mr.Out = name;
            return this;
        }