Configuration.EvaluationContext プロパティ

定義

ContextInformation オブジェクトの Configuration オブジェクトを取得します。

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

プロパティ値

ContextInformation オブジェクトの Configuration オブジェクト。

次のコード例では、 プロパティの使用方法を EvaluationContext 示します。

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())

注釈

オブジェクトは ContextInformation 、評価される場所に基づいてオブジェクトが応答するために必要な Configuration コンテキストを提供します。

適用対象

こちらもご覧ください