ReceiveContext.OnAbandon Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.