Edit

Share via


LogRecordSequence.Dispose Method

Definition

Releases the resources used by the component.

public void Dispose();

Implements

Exceptions

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

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

Examples

This example shows how to use Dispose to release resources:

// Create log stream 1.
        sequence1 = new LogRecordSequence(logStream1,
            FileMode.OpenOrCreate,
            FileAccess.ReadWrite,
            FileShare.ReadWrite);

// Log Extents are shared between the two streams.
// Add two extents to sequence1.
        sequence1.LogStore.Extents.Add("MyExtent0", containerSize);
        sequence1.LogStore.Extents.Add("MyExtent1");

// Create log stream 2.
        sequence2 = new LogRecordSequence(logStream2,
            FileMode.OpenOrCreate,
            FileAccess.ReadWrite,
            FileShare.ReadWrite);
        Console.WriteLine();

// Cleanup...
        sequence1.Dispose();
        sequence2.Dispose();

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1