CorrelationCallbackMessageProperty.OnBeginFinalizeCorrelation 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.
When overridden in a derived class, asynchronously performs the correlation calculation for the specified message.
protected:
abstract IAsyncResult ^ OnBeginFinalizeCorrelation(System::ServiceModel::Channels::Message ^ message, TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
protected abstract IAsyncResult OnBeginFinalizeCorrelation (System.ServiceModel.Channels.Message message, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginFinalizeCorrelation : System.ServiceModel.Channels.Message * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginFinalizeCorrelation (message As Message, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- message
- Message
The message to be correlated.
- timeout
- TimeSpan
The interval in which the correlation calculation must be completed or else a TimeoutException is thrown.
- callback
- AsyncCallback
The method to be called when the correlation calculation has been completed.
- state
- Object
An optional application-specific object that contains information about the asynchronous operation.
Returns
A reference to the current asynchronous operation.
Remarks
This method is called by BeginFinalizeCorrelation.