WebContext Konstruktor
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.
Initialisiert eine neue Instanz der WebContext-Klasse.
public:
WebContext(System::Web::Configuration::WebApplicationLevel pathLevel, System::String ^ site, System::String ^ applicationPath, System::String ^ path, System::String ^ locationSubPath, System::String ^ appConfigPath);
public WebContext (System.Web.Configuration.WebApplicationLevel pathLevel, string site, string applicationPath, string path, string locationSubPath, string appConfigPath);
new System.Web.Configuration.WebContext : System.Web.Configuration.WebApplicationLevel * string * string * string * string * string -> System.Web.Configuration.WebContext
Public Sub New (pathLevel As WebApplicationLevel, site As String, applicationPath As String, path As String, locationSubPath As String, appConfigPath As String)
Parameter
- pathLevel
- WebApplicationLevel
Ein WebApplicationLevel-Objekt.
- site
- String
Der Name der Website.
- applicationPath
- String
Der virtuelle Pfad der Stammebene der aktuellen Webanwendung.
- path
- String
Der virtuelle Pfad der Datei Web.config, die vom aktuellen Konfigurationsobjekt darstellt wird.
- locationSubPath
- String
Der Pfadwert des location
-Elements, das gerade bearbeitet wird.
- appConfigPath
- String
Der Konfigurationspfad der aktuellen Webanwendung.
Beispiele
Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die WebContext Klasse bereitgestellt wird.
// Get the context.
WebContext webContext = (WebContext)config.EvaluationContext.HostingContext;
' Get the context.
Dim webContext As WebContext = config.EvaluationContext.HostingContext