Any instance property that has type IHandlerEvent will be published as a standard
.NET event using standard .NET delegates and metadata, and will
be recognized as an event by any language that supports the
CLI Common Language Specification. The event will accept
handlers of type Handler*lt;'a>.
Note: an abbreviation for IDelegateEvent<Handler<'a>,'a>
Full Type Signature
type IHandlerEvent<'a> = IDelegateEvent<Handler<'a>,'a>
|