CreateInstanceDelegate<T>

Overview

Location

Instance Methods


constructor

 

constructor(object: Object; method: IntPtr)

 

CreateInstanceDelegate<T>(Object object, IntPtr method)

 

Sub New(object As Object, method As IntPtr)

Parameters:

  • object:
  • method:

BeginInvoke

 

method BeginInvoke(callback: AsyncCallback; object: Object): IAsyncResult

 

IAsyncResult BeginInvoke(AsyncCallback callback, Object object)

 

Function BeginInvoke(callback As AsyncCallback, object As Object) As IAsyncResult

Parameters:

  • callback:
  • object:

EndInvoke

 

method EndInvoke(result: IAsyncResult): T

 

T EndInvoke(IAsyncResult result)

 

Function EndInvoke(result As IAsyncResult) As T

Parameters:

  • result:

Invoke

 

method Invoke: T

 

T Invoke()

 

Function Invoke() As T