UrlHelperBase.GenerateUrl 方法

定义

重载

GenerateUrl(String, String, String)

从提供的组件生成 URI。

GenerateUrl(String, String, String, String)

使用指定的值生成 URL。

GenerateUrl(String, String, String)

Source:
UrlHelperBase.cs
Source:
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 路径和其余部分 (路径、查询和片段) 。

返回

如果指定 了 或 hostprotocol则为绝对 URI,否则会生成具有绝对路径的 URI。

适用于

GenerateUrl(String, String, String, String)

Source:
UrlHelperBase.cs
Source:
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

适用于