Compartir a través de


HandleExternalEventActivity.Invoked Evento

Definición

Se produce cuando se recibe el evento externo.

public:
 event EventHandler<System::Workflow::Activities::ExternalDataEventArgs ^> ^ Invoked;
public event EventHandler<System.Workflow.Activities.ExternalDataEventArgs> Invoked;
member this.Invoked : EventHandler<System.Workflow.Activities.ExternalDataEventArgs> 
Public Custom Event Invoked As EventHandler(Of ExternalDataEventArgs) 

Tipo de evento

Ejemplos

En el ejemplo de código siguiente se muestra cómo crear y establecer valores para la clase HandleExternalEventActivity. Este ejemplo de código forma parte de la muestra de SDK de RaiseEventToLoadWorkflow del archivo DocumentApprovalWorkflow.cs. Para obtener más información, vea Generar evento para cargar flujo de trabajo.

this.Car.Name = "Car";
this.Car.ExecuteCode += new System.EventHandler(this.Car_ExecuteCode);
this.Car.SetValue(System.Workflow.Activities.ConditionedActivityGroup.WhenConditionProperty, codecondition1);
codecondition2.Condition += new System.EventHandler<System.Workflow.Activities.ConditionalEventArgs>(this.AirlineCondition);
Me.Car.Name = "Car"
AddHandler Car.ExecuteCode, AddressOf Me.Car_ExecuteCode
Me.Car.SetValue(System.Workflow.Activities.ConditionedActivityGroup.WhenConditionProperty, codecondition1)
AddHandler codecondition2.Condition, AddressOf Me.AirlineCondition

Se aplica a

Consulte también