ContextInformation.HostingContext Proprietà

Definizione

Ottiene il contesto dell'ambiente in cui viene valutata la proprietà di configurazione.

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

Valore della proprietà

Oggetto che specifica l'ambiente in cui viene valutata la proprietà di configurazione.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la HostingContext proprietà .

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

Commenti

Il valore possibile HostingContext è WebContext, ExeContexto null.

Si applica a

Vedi anche