SendActivity.BeforeSend Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs before the SendActivity activity sends the message to the service.
public:
event EventHandler<System::Workflow::Activities::SendActivityEventArgs ^> ^ BeforeSend;
[System.ComponentModel.Browsable(true)]
public event EventHandler<System.Workflow.Activities.SendActivityEventArgs> BeforeSend;
[<System.ComponentModel.Browsable(true)>]
member this.BeforeSend : EventHandler<System.Workflow.Activities.SendActivityEventArgs>
Public Custom Event BeforeSend As EventHandler(Of SendActivityEventArgs)
Event Type
- Attributes
Examples
The following example shows how to use the BeforeSend
event. This example was adapted from the Conversations
SDK sample.
[System.Diagnostics.DebuggerNonUserCode]
private void InitializeComponent()
{
SendActivity sendActivity1 = new SendActivity();
sendActivity1.BeforeSend += new EventHandler<SendActivityEventArgs>(sendActivity1_BeforeSend);
}
void sendActivity1_BeforeSend(object sender, SendActivityEventArgs e)
{
Console.WriteLine("SendActivity1 BeforeSend event fired.");
}
void sendActivity1_AfterResponse(object sender, SendActivityEventArgs e)
{
Console.WriteLine("SendActivity1 AfterResponse event fired.");
}
Remarks
This event handler associated with this event can be used to set the parameter values for the service operation being invoked.
Note
The context of a SendActivity cannot be set in this event handler.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET