IRecordSequence.EndAppend(IAsyncResult) Method

Definition

When overridden in a derived class, ends an asynchronous append operation.

public:
 System::IO::Log::SequenceNumber EndAppend(IAsyncResult ^ result);
public System.IO.Log.SequenceNumber EndAppend (IAsyncResult result);
abstract member EndAppend : IAsyncResult -> System.IO.Log.SequenceNumber
Public Function EndAppend (result As IAsyncResult) As SequenceNumber

Parameters

result
IAsyncResult

A reference to the outstanding asynchronous I/O request.

Returns

The sequence number of the appended log record.

Exceptions

One or more of the arguments is invalid.

The method was called after the sequence has been disposed of.

Remarks

This method blocks until the I/O operation has completed. Errors that occur during an asynchronous write request, such as a disk failure during the I/O request, become visible when EndAppend is called.

This method must be called exactly once on every IAsyncResult returned by the BeginAppend method.

Applies to