The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
SendActivity::AfterResponse Event
.NET Framework (current version)
Occurs after the response has been received from the service.
Assembly: System.WorkflowServices (in System.WorkflowServices.dll)
This event handler associated with this event can be used to read the return value from the service operation invoked.
The following example shows how to use the AfterResponse event.
[System.Diagnostics.DebuggerNonUserCode] private void InitializeComponent() { SendActivity sendActivity1 = new SendActivity(); sendActivity1.AfterResponse += new EventHandler<SendActivityEventArgs>(sendActivity1_AfterResponse); } void sendActivity1_AfterResponse(object sender, SendActivityEventArgs e) { Console.WriteLine("SendActivity1 AfterResponse event fired."); }
.NET Framework
Available since 3.5
Available since 3.5
Show: