Windows apps
Collapse the table of content
Expand the table of content
Information
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.

RequestContext::BeginReply Method (Message^, AsyncCallback^, Object^)

 

When overridden in a derived class, begins an asynchronous operation to reply to the request associated with the current context.

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
virtual IAsyncResult^ BeginReply(
	Message^ message,
	AsyncCallback^ callback,
	Object^ state
) abstract

Parameters

message
Type: System.ServiceModel.Channels::Message^

The incoming Message that contains the request.

callback
Type: System::AsyncCallback^

The AsyncCallback delegate that receives the notification of the asynchronous reply operation completion.

state
Type: System::Object^

An object, specified by the application, that contains state information associated with the asynchronous reply operation.

Return Value

Type: System::IAsyncResult^

The IAsyncResult that references the asynchronous reply operation.

Use the asynchronous BeginReply method when the application processing must continue without waiting. Use one of the synchronous Reply methods when it is acceptable for the current thread to be blocked while it replies to the request message or until the time-out interval is exceeded.

This method receives notification, through a callback, of the identity of the event handler for the operation. The operation is not complete until either the reply is sent or the time-out occurs.

Notes to Implementers:

The operation throws a TimeoutException if the specified timeout is exceeded before it completes.

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft