共用方式為


UrlHelperBase.GenerateUrl 方法

定義

多載

GenerateUrl(String, String, String)

從提供的元件產生 URI。

GenerateUrl(String, String, String, String)

使用指定的值產生 URL。

GenerateUrl(String, String, String)

來源:
UrlHelperBase.cs
來源:
UrlHelperBase.cs

從提供的元件產生 URI。

protected:
 System::String ^ GenerateUrl(System::String ^ protocol, System::String ^ host, System::String ^ path);
protected string GenerateUrl (string protocol, string host, string path);
protected string? GenerateUrl (string? protocol, string? host, string? path);
member this.GenerateUrl : string * string * string -> string
Protected Function GenerateUrl (protocol As String, host As String, path As String) As String

參數

protocol
String

URI 配置/通訊協定。

host
String

URI 主機。

path
String

URI 路徑和其餘部分 (路徑、查詢和片段) 。

傳回

如果 protocol 指定 或 host ,則為絕對 URI,否則會產生具有絕對路徑的 URI。

適用於

GenerateUrl(String, String, String, String)

來源:
UrlHelperBase.cs
來源:
UrlHelperBase.cs

使用指定的值產生 URL。

protected:
 System::String ^ GenerateUrl(System::String ^ protocol, System::String ^ host, System::String ^ virtualPath, System::String ^ fragment);
protected string GenerateUrl (string protocol, string host, string virtualPath, string fragment);
protected string? GenerateUrl (string? protocol, string? host, string? virtualPath, string? fragment);
member this.GenerateUrl : string * string * string * string -> string
Protected Function GenerateUrl (protocol As String, host As String, virtualPath As String, fragment As String) As String

參數

protocol
String

通訊協定。

host
String

主機。

virtualPath
String

虛擬路徑。

fragment
String

片段。

傳回

產生的 URL

適用於