Udostępnij za pośrednictwem


ContextUtil.TransactionId Właściwość

Definicja

Pobiera identyfikator GUID bieżącej transakcji COM+ DTC.

public:
 static property Guid TransactionId { Guid get(); };
public static Guid TransactionId { get; }
static member TransactionId : Guid
Public Shared ReadOnly Property TransactionId As Guid

Wartość właściwości

Identyfikator GUID reprezentujący bieżącą transakcję COM+ DTC, jeśli istnieje.

Wyjątki

Brak dostępnego kontekstu COM+.

Przykłady

Poniższy przykład kodu pobiera wartość TransactionId właściwości.

[Transaction(TransactionOption::Required)]
public ref class ContextUtil_TransactionId: public ServicedComponent
{
public:
   void Example()
   {
      // Display the ID of the transaction in which the current COM+ context
      // is enlisted.
      Console::WriteLine( "Transaction ID: {0}", ContextUtil::TransactionId );
   }
};
[Transaction(TransactionOption.Required)]
public class ContextUtil_TransactionId : ServicedComponent
{
    public void Example()
    {
        // Display the ID of the transaction in which the current COM+ context
        // is enlisted.
        Console.WriteLine("Transaction ID: {0}", ContextUtil.TransactionId);
    }
}
<Transaction(TransactionOption.Required)>  _
Public Class ContextUtil_TransactionId
    Inherits ServicedComponent
    
    Public Sub Example() 
        ' Display the ID of the transaction in which the current COM+ context
        ' is enlisted.
        MsgBox("Transaction ID: " & ContextUtil.TransactionId.ToString())

    End Sub
End Class

Dotyczy