[This is preliminary documentation and is subject to change.]

Removes an observer from a KVO-compliant key path of the receiver.

Namespace:  KNKVC
Assembly:  KNKVC (in KNKVC.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static void removeObserverFromKeyPath(
	this Object o,
	KNKVOObserver observer,
	string keyPath
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Sub removeObserverFromKeyPath ( _
	o As Object, _
	observer As KNKVOObserver, _
	keyPath As String _
)
Visual C++
[ExtensionAttribute]
public:
static void removeObserverFromKeyPath(
	Object^ o, 
	KNKVOObserver^ observer, 
	String^ keyPath
)

Parameters

o
Type: System..::.Object
The object to remove the observation from.
observer
Type: KNKVC..::.KNKVOObserver
The observer to remove.
keyPath
Type: System..::.String
The key path of the observation to remove.

See Also