MongoDB.MapReduce.Finalize C# (CSharp) Method

Finalize() public method

Function to apply to all the results when finished.
public Finalize ( Code function ) : MapReduce
function Code
return MapReduce
        public MapReduce Finalize(Code function)
        {
            TryModify();
            Command.Finalize = function;
            return this;
        }