FileRecordSequence.ReadRestartAreas Method

Definition

Returns an enumerable collection of the restart areas in the sequence. This method cannot be inherited.

public:
 virtual System::Collections::Generic::IEnumerable<System::IO::Log::LogRecord ^> ^ ReadRestartAreas();
public System.Collections.Generic.IEnumerable<System.IO.Log.LogRecord> ReadRestartAreas ();
abstract member ReadRestartAreas : unit -> seq<System.IO.Log.LogRecord>
override this.ReadRestartAreas : unit -> seq<System.IO.Log.LogRecord>
Public Function ReadRestartAreas () As IEnumerable(Of LogRecord)

Returns

An enumerable collection of the restart areas in the sequence.

Implements

Exceptions

The operation cannot be performed because the record sequence was opened with write-only access.

The record sequence is corrupted.

-or-

The record was written with an incompatible version of the record sequence.

The enumeration has ended.

-or-

The enumeration has not been started. A call to MoveNext() must be made.

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

There is not enough memory to continue the execution of the program.

Remarks

The restart areas are enumerated in reverse sequence number order, that is, from the highest sequence number to the lowest sequence number. Only restart areas with sequence numbers between the last sequence number and the base sequence number are enumerated.

Applies to