ContextInformation.HostingContext Propriété

Définition

Obtient le contexte de l'environnement dans lequel la propriété de configuration est évaluée.

public:
 property System::Object ^ HostingContext { System::Object ^ get(); };
public object HostingContext { get; }
member this.HostingContext : obj
Public ReadOnly Property HostingContext As Object

Valeur de propriété

Objet spécifiant l'environnement dans lequel la propriété de configuration est évaluée.

Exemples

L’exemple de code suivant montre comment utiliser la HostingContext propriété .

// Create an object based on HostingContext.
WebContext myWC =
  (WebContext)config.EvaluationContext.HostingContext;
// Use the WebContext object to determine
// the ApplicationLevel.
Console.WriteLine("ApplicationLevel: {0}",
  myWC.ApplicationLevel);
' Create an object based on HostingContext.
Dim myWC As WebContext = _
  config.EvaluationContext.HostingContext
' Use the WebContext object to determine
' the ApplicationLevel.
Console.WriteLine("ApplicationLevel: {0}", _
  myWC.ApplicationLevel)

Remarques

La valeur possible HostingContext est WebContext, ExeContextou null.

S’applique à

Voir aussi