อ่านในภาษาอังกฤษ แก้ไข

แชร์ผ่าน


Activity.Invoke Method

Definition

Subscribes an EventHandler or an IActivityEventListener<T> and invokes that delegate.

Overloads

Invoke<T>(EventHandler<T>, T)

Subscribes an EventHandler and invokes that delegate.

Invoke<T>(IActivityEventListener<T>, T)

Subscribes an IActivityEventListener<T> and invokes that delegate.

Invoke<T>(EventHandler<T>, T)

Subscribes an EventHandler and invokes that delegate.

C#
protected internal void Invoke<T>(EventHandler<T> handler, T e) where T : EventArgs;

Type Parameters

T

The specified type.

Parameters

handler
EventHandler<T>

The EventHandler to be invoked.

e
T

The EventArgs to associate with this event.

Applies to

.NET Framework 4.8.1 และรุ่นอื่นๆ
ผลิตภัณฑ์ เวอร์ชัน
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Invoke<T>(IActivityEventListener<T>, T)

Subscribes an IActivityEventListener<T> and invokes that delegate.

C#
protected internal void Invoke<T>(System.Workflow.ComponentModel.IActivityEventListener<T> eventListener, T e) where T : EventArgs;

Type Parameters

T

The specified type.

Parameters

eventListener
IActivityEventListener<T>

The IActivityEventListener<T> to be invoked.

e
T

The EventArgs to associate with this event.

Applies to

.NET Framework 4.8.1 และรุ่นอื่นๆ
ผลิตภัณฑ์ เวอร์ชัน
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1