EventSinkAttribute

Overview

Marks the class to implement an invoker.

This attribute should only be applied to event sink interfaces defined in the *_Intf files auto-generated from your RODL library; attaching it to custom code should only be done by advanced users who know exactly what they are doing.

Location

Properties


InvokerClass

The class to be used as invoker for this type. Since invoker and implementation are tightly coupled, this will usually point to the auto-generated Invoker class.

 

property InvokerClass: Type read write;

 

Type InvokerClass { get; set; }

 

Property InvokerClass() As Type

Name

Specifies the name (also known as Event Sink Name or Interface Name) under which the event is available.

 

property Name: String read write;

 

String Name { get; set; }

 

Property Name() As String

Instance Methods


constructor

 

constructor

 

EventSinkAttribute()

 

Sub New()