MongoDB.MapReduce.Map C# (CSharp) Method

Map() public method

The map function references the variable this to inspect the current object under consideration. A map function must call emit(key,value) at least once, but may be invoked any number of times, as may be appropriate.
public Map ( Code function ) : MapReduce
function Code
return MapReduce
        public MapReduce Map(Code function)
        {
            TryModify();
            Command.Map = function;
            return this;
        }

Same methods

MapReduce::Map ( string function ) : MapReduce