LogStore.Extents Property

Definition

Gets the collection of log extents that contain the data for this log store.

public:
 property System::IO::Log::LogExtentCollection ^ Extents { System::IO::Log::LogExtentCollection ^ get(); };
public System.IO.Log.LogExtentCollection Extents { get; }
member this.Extents : System.IO.Log.LogExtentCollection
Public ReadOnly Property Extents As LogExtentCollection

Property Value

A LogExtentCollection instance containing the collection of log extents that encapsulates data for this log store.

Remarks

A LogStore instance stores its data in a collection of disk extents, represented by LogExtent instances. The extents in a given LogStore instance are all of uniform size, and space is added to and removed from a LogStore instance in extent increments. To add and remove log extents, use the Add and Remove methods of the LogExtentCollection object, which is returned by this property.

Applies to