共用方式為


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

屬性值

目前 Web 應用程式的虛擬路徑。

範例

下列範例將示範如何使用 Path 屬性。 此程式碼範例是提供給 類別之較大範例的 WebContext 一部分。

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

適用於