EventInfo.RemoveEventHandler Method
.NET Framework 4
Removes an event handler from an event source.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- target
- Type: System.Object
The event source.
- handler
- Type: System.Delegate
The delegate to be disassociated from the events raised by target.
Implements
_EventInfo.RemoveEventHandler(Object, Delegate)| Exception | Condition |
|---|---|
| InvalidOperationException |
The event does not have a public remove accessor. |
| ArgumentException |
The handler that was passed in cannot be used. |
| TargetException |
The target parameter is null and the event is not static. -or- The EventInfo is not declared on the target. |
| MethodAccessException |
The caller does not have access permission to the member. |
-
ReflectionPermission
when invoked late-bound through mechanisms such as Type.InvokeMember. Associated enumeration: ReflectionPermissionFlag.MemberAccess.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.