ReceiveContext.BeginAbandon Method

Definition

Begins an asynchronous abandon operation.

Overloads

BeginAbandon(TimeSpan, AsyncCallback, Object)

Begins an asynchronous abandon operation with the specified timeout, asynchronous callback, and user-defined state data.

BeginAbandon(Exception, TimeSpan, AsyncCallback, Object)

Begins an asynchronous abandon operation with the specified exception, timeout, asynchronous callback, and user-defined state data.

BeginAbandon(TimeSpan, AsyncCallback, Object)

Begins an asynchronous abandon operation with the specified timeout, asynchronous callback, and user-defined state data.

public:
 virtual IAsyncResult ^ BeginAbandon(TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public virtual IAsyncResult BeginAbandon (TimeSpan timeout, AsyncCallback callback, object state);
abstract member BeginAbandon : TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.BeginAbandon : TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Overridable Function BeginAbandon (timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

timeout
TimeSpan

The timeout for the abandon operation to complete.

callback
AsyncCallback

The asynchronous callback delegate that receives the notification of the asynchronous operation completion.

state
Object

The user-defined state data.

Returns

A IAsyncResult that references the asynchronous abandon operation.

Applies to

BeginAbandon(Exception, TimeSpan, AsyncCallback, Object)

Begins an asynchronous abandon operation with the specified exception, timeout, asynchronous callback, and user-defined state data.

public:
 virtual IAsyncResult ^ BeginAbandon(Exception ^ exception, TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public virtual IAsyncResult BeginAbandon (Exception exception, TimeSpan timeout, AsyncCallback callback, object state);
abstract member BeginAbandon : Exception * TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.BeginAbandon : Exception * TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Overridable Function BeginAbandon (exception As Exception, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

exception
Exception

An exception that contains the reason for the abandon operation.

timeout
TimeSpan

The timeout for the abandon operation to complete.

callback
AsyncCallback

The asynchronous callback delegate that receives the notification of the asynchronous operation completion.

state
Object

the user-defined state data.

Returns

An IAsyncResult that references the asynchronous abandon operation.

Applies to