WebContext コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET