EventInterceptionAspect.OnRemoveHandler Method |
Namespace: PostSharp.Aspects
Assembly: PostSharp (in PostSharp.dll) Version: 6.10.14.0 (6.10.14.0)
public virtual void OnRemoveHandler( EventInterceptionArgs args )
Parameters
- args
- Type: PostSharp.Aspects.EventInterceptionArgs
Handler arguments.
Implements
IEventInterceptionAspect.OnRemoveHandler(EventInterceptionArgs)Because of the way how the C# compiler implements field-like events (i.e. events where you don't implement the Add and Remove semantics manually), the Invoke Event Handler semantic ( OnInvokeHandler(EventInterceptionArgs) or equivalent) shall not be invoked for delegates that have been added from inside the class that declares this event. |