Configuration.EvaluationContext Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft das ContextInformation-Objekt für das Configuration-Objekt ab.
public:
property System::Configuration::ContextInformation ^ EvaluationContext { System::Configuration::ContextInformation ^ get(); };
public System.Configuration.ContextInformation EvaluationContext { get; }
member this.EvaluationContext : System.Configuration.ContextInformation
Public ReadOnly Property EvaluationContext As ContextInformation
Eigenschaftswert
Das ContextInformation-Objekt für das Configuration-Objekt.
Beispiele
Im folgenden Codebeispiel wird die Verwendung der EvaluationContext -Eigenschaft veranschaulicht.
ContextInformation evalContext =
config.EvaluationContext as ContextInformation;
Console.WriteLine("Machine level: {0}",
evalContext.IsMachineLevel.ToString());
Dim evalContext As ContextInformation = TryCast(config.EvaluationContext, ContextInformation)
Console.WriteLine("Machine level: {0}", evalContext.IsMachineLevel.ToString())
Hinweise
Ein ContextInformation -Objekt stellt den Kontext bereit, der für ein Configuration Objekt erforderlich ist, um basierend darauf zu reagieren, wo es ausgewertet wird.