ContextUtil.ContextId Eigenschaft

Definition

Ruft eine GUID für den aktuellen Kontext ab.

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

Eigenschaftswert

Die GUID für den aktuellen Kontext.

Ausnahmen

Es ist kein COM+-Kontext verfügbar.

Beispiele

Der folgende Beispielcode veranschaulicht die Verwendung dieses Attributs.

protected:
   virtual void Activate() override
   {
      MessageBox::Show( String::Format( "Now entering...\nApplication: {0}\nInstance: {1}\nContext: {2}\n", ContextUtil::ApplicationId.ToString(), ContextUtil::ApplicationInstanceId.ToString(), ContextUtil::ContextId.ToString() ) );
   }
protected override void Activate()
{
    MessageBox.Show( String.Format("Now entering...\nApplication: {0}\nInstance: {1}\nContext: {2}\n",
                                   ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString(),
                                   ContextUtil.ContextId.ToString() ) );
}
Protected Overrides Sub Activate() 
    MessageBox.Show(String.Format("Now entering..." + vbLf + "Application: {0}" + vbLf + "Instance: {1}" + vbLf + "Context: {2}" + vbLf, ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString(), ContextUtil.ContextId.ToString()))

End Sub

Gilt für: