次の方法で共有


WebContext.Path プロパティ

定義

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

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

プロパティ値

String

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

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

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

適用対象