Click or drag to resize

DatabaseRemoveDocumentChangedListener Method

Removes a listener for changes on a certain document (by ID). Similar to Changed but requires a parameter to add so it is a method instead of an event.

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 0.0.0
Syntax
C#
public void RemoveDocumentChangedListener(
	string documentID,
	EventHandler<DocumentChangedEventArgs> handler
)

Parameters

documentID
Type: SystemString
The ID to add the listener for
handler
Type: SystemEventHandlerDocumentChangedEventArgs
The logic to handle the event
See Also