RequestContext.BeginReply Method (Message, TimeSpan, AsyncCallback, Object)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

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

Syntax

'Declaration
Public MustOverride Function BeginReply ( _
    message As Message, _
    timeout As TimeSpan, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
public abstract IAsyncResult BeginReply(
    Message message,
    TimeSpan timeout,
    AsyncCallback callback,
    Object state
)

Parameters

  • timeout
    Type: System.TimeSpan
    The Timespan that specifies the interval of time to wait for the reply to an available request.
  • 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.

Remarks

Use the asynchronous BeginReply() method to allow the application processing to continue without waiting for the request to complete.

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.