次の方法で共有


WebContext.ApplicationLevel プロパティ

定義

現在の Web アプリケーションのパス レベルを表す WebApplicationLevel オブジェクトを取得します。

public:
 property System::Web::Configuration::WebApplicationLevel ApplicationLevel { System::Web::Configuration::WebApplicationLevel get(); };
public System.Web.Configuration.WebApplicationLevel ApplicationLevel { get; }
member this.ApplicationLevel : System.Web.Configuration.WebApplicationLevel
Public ReadOnly Property ApplicationLevel As WebApplicationLevel

プロパティ値

WebApplicationLevel オブジェクト。

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

// WebContext - Application Level.
Console.WriteLine("ApplicationLevel: {0}", 
  webContext.ApplicationLevel.ToString());
' WebContext - Application Level.
Console.WriteLine("ApplicationLevel: {0}", _
  webContext.ApplicationLevel.ToString())

適用対象