WebClientAsyncResult Class

Definition

Provides an implementation of IAsyncResult for use by XML Web service proxies to implement the standard asynchronous method pattern.

public ref class WebClientAsyncResult : IAsyncResult
public class WebClientAsyncResult : IAsyncResult
type WebClientAsyncResult = class
    interface IAsyncResult
Public Class WebClientAsyncResult
Implements IAsyncResult
Inheritance
WebClientAsyncResult
Implements

Remarks

When you call the BeginMyMethodName method, where MyMethodName is the synchronous version of the method, on an XML Web service proxy class, an instance of the WebClientAsyncResult is returned. Following the standard asynchronous design pattern, that instance of WebClientAsyncResult must later be passed to EndMyMethodName to complete the asynchronous method call.

For details on calling XML Web services asynchronously, see Communicating with XML Web Services Asynchronously.

Properties

AsyncState

Gets the object provided in the last parameter to the Begin method asynchronous call.

AsyncWaitHandle

Gets a WaitHandle that is used to wait for an asynchronous operation to complete.

CompletedSynchronously

Gets a value indicating whether the Begin call completed synchronously.

IsCompleted

Gets a value indicating whether the asynchronous XML Web service request has completed.

Methods

Abort()

Cancels an asynchronous XML Web service request.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also