MessageSender.OnBeginCancelScheduledMessage 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.
This allows concrete implementations to override (if needed) what should be done to cancel scheduled sends
protected abstract IAsyncResult OnBeginCancelScheduledMessage (Microsoft.ServiceBus.Tracing.TrackingContext trackingContext, System.Collections.Generic.IEnumerable<long> sequenceNumbers, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginCancelScheduledMessage : Microsoft.ServiceBus.Tracing.TrackingContext * seq<int64> * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginCancelScheduledMessage (trackingContext As TrackingContext, sequenceNumbers As IEnumerable(Of Long), timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- trackingContext
- TrackingContext
Tracking context to use.
- sequenceNumbers
- IEnumerable<Int64>
Sequence Number of the message to cancelled.
- timeout
- TimeSpan
A client side timeout value for the operation. The operation should be aborted or cancel if the duration exceeded this timeout.
- callback
- AsyncCallback
A user callback to be invoked when the operation completes.
- state
- Object
The state to be passed to the callback when the operation completes.
Returns
a IAsyncResult for the operation.
Applies to
Azure SDK for .NET