RemoveHandler(object, Delegate)
Removes a handler from PropertyChanging event.
Declaration
public abstract bool RemoveHandler(object instance, Delegate handler)
Parameters
Type | Name | Description |
---|---|---|
object | instance | Instance. |
Delegate | handler | Delegate that was registered to the event. |
Returns
Type | Description |
---|---|
bool |
|
Remarks
An implementation should never return false
, instead it should return the result of this.Next.RemoveHandler
.