Click or drag to resize

MapDelegate Delegate

A delegate that is invoked when a Document is being added to a View.

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
public delegate void MapDelegate(
	IDictionary<string, Object> document,
	EmitDelegate emit
)

Parameters

document
Type: System.Collections.GenericIDictionaryString, Object
The Document being mapped.
emit
Type: Couchbase.LiteEmitDelegate
The delegate to use to add key/values to the View.
See Also