Sdílet prostřednictvím


ActivationArguments.ActivationContext Vlastnost

Definice

Získá kontext aktivace pro aktivaci aplikace na základě manifestu.

public:
 property ActivationContext ^ ActivationContext { ActivationContext ^ get(); };
public ActivationContext ActivationContext { get; }
member this.ActivationContext : ActivationContext
Public ReadOnly Property ActivationContext As ActivationContext

Hodnota vlastnosti

ActivationContext

Objekt, který identifikuje aktivační aplikaci založenou na manifestu.

Příklady

Následující příklad kódu ukazuje, jak získat hodnotu ActivationContext vlastnosti z aplikace založené na ActivationArguments manifestu.

Tento příklad kódu je součástí většího příkladu poskytnutého ActivationArguments pro třídu.

// Get the ActivationArguments from the SetupInformation property of the domain.
ActivationArguments activationArgs = AppDomain.CurrentDomain.SetupInformation.ActivationArguments;
// Get the ActivationContext from the ActivationArguments.
ActivationContext actContext = activationArgs.ActivationContext;
Console.WriteLine("The ActivationContext.Form property value is: " +
    activationArgs.ActivationContext.Form);
Dim ac As ActivationContext = AppDomain.CurrentDomain.ActivationContext
' Get the ActivationArguments from the SetupInformation property of the domain.
Dim activationArgs As ActivationArguments = AppDomain.CurrentDomain.SetupInformation.ActivationArguments
' Get the ActivationContext from the ActivationArguments.
Dim actContext As ActivationContext = activationArgs.ActivationContext
Console.WriteLine("The ActivationContext.Form property value is: " + _
 activationArgs.ActivationContext.Form.ToString())

Poznámky

Objekt ActivationContext obsahuje ApplicationIdentity a poskytuje interní přístup k manifestu aplikace. Kontext aktivace se používá při aktivaci na základě manifestu k nastavení zásad domény a poskytnutí modelu zabezpečení založeného na aplikaci.

Platí pro