次の方法で共有


WebContext コンストラクター

定義

WebContext クラスの新しいインスタンスを初期化します。

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)

パラメーター

pathLevel
WebApplicationLevel

WebApplicationLevel オブジェクト。

site
String

Web サイトの名前。

applicationPath
String

現在の Web アプリケーションのルート レベルの仮想パス。

path
String

現在の構成オブジェクトが表している Web.config ファイルの仮想パス。

locationSubPath
String

現在編集中の location 要素のパス値。

appConfigPath
String

現在の Web アプリケーションの構成パス。

次の例は、このコンストラクターを使用する方法を示しています。 このコード例は、WebContext クラスのために提供されている大規模な例の一部です。

// Get the context.
WebContext webContext = (WebContext)config.EvaluationContext.HostingContext;
' Get the context.
Dim webContext As WebContext = config.EvaluationContext.HostingContext

適用対象