IEvent

Overview

IEvent is an interface to any internal or external event. It can be used to retrieve the type of an event and access its methods.

Location


Properties


AddMethod

Returns the add method

 

property AddMethod: IMethod read;

 

IMethod AddMethod { get; }

 

var AddMethod: IMethod { get{} }

 

IMethod AddMethod { __get; }

 

ReadOnly Property AddMethod() As IMethod

RaiseMethod

Returns the raise/fire method

 

property RaiseMethod: IMethod read;

 

IMethod RaiseMethod { get; }

 

var RaiseMethod: IMethod { get{} }

 

IMethod RaiseMethod { __get; }

 

ReadOnly Property RaiseMethod() As IMethod

RemoveMethod

Returns the remove method

 

property RemoveMethod: IMethod read;

 

IMethod RemoveMethod { get; }

 

var RemoveMethod: IMethod { get{} }

 

IMethod RemoveMethod { __get; }

 

ReadOnly Property RemoveMethod() As IMethod

Type

Returns the delegate type

 

property Type: IType read;

 

IType Type { get; }

 

var Type: IType { get{} }

 

IType Type { __get; }

 

ReadOnly Property Type() As IType