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())

适用于