ReceiveContext.OnAbandon Method

Definition

Called when the state machine is transitioning to the abandoned state.

Overloads

OnAbandon(Exception, TimeSpan)

Called when the state machine is transitioning to the abandoned state with the specified exception and timeout value.

OnAbandon(TimeSpan)

Called when the state machine is transitioning to the abandoned state with the specified timeout value.

OnAbandon(Exception, TimeSpan)

Called when the state machine is transitioning to the abandoned state with the specified exception and timeout value.

protected:
 virtual void OnAbandon(Exception ^ exception, TimeSpan timeout);
protected virtual void OnAbandon (Exception exception, TimeSpan timeout);
abstract member OnAbandon : Exception * TimeSpan -> unit
override this.OnAbandon : Exception * TimeSpan -> unit
Protected Overridable Sub OnAbandon (exception As Exception, timeout As TimeSpan)

Parameters

exception
Exception

An exception that contains the reason for the abandon operation.

timeout
TimeSpan

The timeout for the abandon operation to complete.

Applies to

OnAbandon(TimeSpan)

Called when the state machine is transitioning to the abandoned state with the specified timeout value.

protected:
 abstract void OnAbandon(TimeSpan timeout);
protected abstract void OnAbandon (TimeSpan timeout);
abstract member OnAbandon : TimeSpan -> unit
Protected MustOverride Sub OnAbandon (timeout As TimeSpan)

Parameters

timeout
TimeSpan

The timeout for the abandon operation to complete.

Applies to