次の方法で共有


WebContext.ApplicationPath プロパティ

定義

現在の Web アプリケーションのアプリケーション パスを取得します。

public:
 property System::String ^ ApplicationPath { System::String ^ get(); };
public string ApplicationPath { get; }
member this.ApplicationPath : string
Public ReadOnly Property ApplicationPath As String

プロパティ値

String

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

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

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

適用対象