ContextInformation.IsMachineLevel Property

Definition

Gets a value specifying whether the configuration property is being evaluated at the machine configuration level.

public:
 property bool IsMachineLevel { bool get(); };
public bool IsMachineLevel { get; }
member this.IsMachineLevel : bool
Public ReadOnly Property IsMachineLevel As Boolean

Property Value

true if the configuration property is being evaluated at the machine configuration level; otherwise, false.

Examples

The following code example demonstrates how to use the HostingContext property.

// IsMachineLevel property.
Console.WriteLine("IsMachineLevel: {0}",
  config.EvaluationContext.IsMachineLevel);
' IsMachineLevel property.
Console.WriteLine("IsMachineLevel: {0}", _
  config.EvaluationContext.IsMachineLevel)

Remarks

When the returned value of IsMachineLevel is false, use the HostingContext property to determine the level within the configuration hierarchy.

Applies to