LogExtent Class

 

Represents a disk extent that contains log data.

Namespace:   System.IO.Log
Assembly:  System.IO.Log (in System.IO.Log.dll)

System::Object
  System.IO.Log::LogExtent

public ref class LogExtent sealed 

NameDescription
System_CAPS_pubpropertyPath

Gets the fully qualified path of this LogExtent instance.

System_CAPS_pubpropertySize

Gets the size of this LogExtent instance, in bytes.

System_CAPS_pubpropertyState

Gets the state of this LogExtent instance.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

A LogStore instance stores its data in a collection of disk extents, represented by LogExtent instances. A particular LogExtent is associated with exactly one LogStore, and LogExtent objects in the same LogStore are of identical size. Space is added to and removed from a LogStore instance in extent increments.

Although LogExtent objects are represented on disk as files, they should not be moved or deleted as normal files. To delete a LogExtent instance, remove it from the LogExtentCollection that contains it.

This example shows how to use the LogExtent class to add and emulate extents in a log sequence.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: