ContextUtil.ActivityId プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コンポーネントが格納されているアクティビティを表す GUID を取得します。
public:
static property Guid ActivityId { Guid get(); };
public static Guid ActivityId { get; }
static member ActivityId : Guid
Public Shared ReadOnly Property ActivityId As Guid
プロパティ値
現在のコンテキストがアクティビティに含まれている場合はアクティビティの GUID。それ以外の場合は GUID_NULL
。
例外
使用できる COM+ コンテキストはありません。
例
次のコード例では、 プロパティの値を ActivityId 取得します。
[Synchronization(SynchronizationOption::Required)]
public ref class ContextUtil_ActivityId: public ServicedComponent
{
public:
void Example()
{
// Display the ActivityID associated with the current COM+ context.
Console::WriteLine( "Activity ID: {0}", ContextUtil::ActivityId );
}
};
[Synchronization(SynchronizationOption.Required)]
public class ContextUtil_ActivityId : ServicedComponent
{
public void Example()
{
// Display the ActivityID associated with the current COM+ context.
Console.WriteLine("Activity ID: {0}", ContextUtil.ActivityId);
}
}
<Synchronization(SynchronizationOption.Required)> _
Public Class ContextUtil_ActivityId
Inherits ServicedComponent
Public Sub Example()
' Display the ActivityID associated with the current COM+ context.
MsgBox("Activity ID: " & ContextUtil.ActivityId.ToString())
End Sub
End Class
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET