MessageReceiver.OnBeginPeek Method

Definition

Executes upon calling the BeginPeek operation.

protected abstract IAsyncResult OnBeginPeek (Microsoft.ServiceBus.Tracing.TrackingContext trackingContext, long fromSequenceNumber, int messageCount, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginPeek : Microsoft.ServiceBus.Tracing.TrackingContext * int64 * int * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginPeek (trackingContext As TrackingContext, fromSequenceNumber As Long, messageCount As Integer, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

trackingContext
TrackingContext

The context information associated by a transaction tracking this operation.

fromSequenceNumber
Int64

The sequence number from where to begin the operation.

messageCount
Int32

The number of message.

timeout
TimeSpan

The time span the operation waits before it times out.

callback
AsyncCallback

An AsyncCallback delegate that references the method to invoke when the operation is complete.

state
Object

A user-defined object that contains state information about the asynchronous operation.

Returns

The result of the operation.

Applies to