LogRecord Class

 

Represents an unstructured log record delivered as a COM+ CrmLogRecordRead structure. This class cannot be inherited.

Namespace:   System.EnterpriseServices.CompensatingResourceManager
Assembly:  System.EnterpriseServices (in System.EnterpriseServices.dll)

System::Object
  System.EnterpriseServices.CompensatingResourceManager::LogRecord

public ref class LogRecord sealed 

NameDescription
System_CAPS_pubpropertyFlags

Gets a value that indicates when the log record was written.

System_CAPS_pubpropertyRecord

Gets the log record user data.

System_CAPS_pubpropertySequence

The sequence number of the log record.

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.)

Unstructured log records are delivered as a COM+ CrmLogRecordRead structure. In addition to the user data (a single BLOB), this contains additional fields that are useful for debugging or fault finding. The Flags field is a bit field that provides further information about whether this record was forgotten at some point, and when it was written. The Sequence field provides the sequence number of the log record. In most cases, sequence numbers are sequential but are not necessarily contiguous due to internal log records that are not delivered to the Compensating Resource Manager (CRM) Compensator.

The following code example demonstrates the use of this class.

public:
    virtual bool AbortRecord(LogRecord^ log) override
    {

        // Check the validity of the record.
        if (log == nullptr)
        {
            return true;
        }
        array<Object^>^ record = dynamic_cast<array<Object^>^>(log->Record);
        if (record == nullptr)
        {
            return true;
        }
        if (record->Length != 2)
        {
            return true;
        }

        // Extract old account data from the record.
        String^ filename = (String^) record[0];
        int balance = (int) record[1];

        // Restore the old state of the account.
        WriteAccountBalance(filename, balance);

        return false;
    }

.NET Framework
Available since 1.1

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: