共用方式為


UrlPrefix.Create 方法

定義

多載

Create(String)
Create(String, String, Nullable<Int32>, String)

http://msdn.microsoft.com/en-us/library/windows/desktop/aa364698(v=vs.85).aspx

Create(String, String, String, String)

http://msdn.microsoft.com/en-us/library/windows/desktop/aa364698(v=vs.85).aspx

Create(String)

public:
 static Microsoft::Net::Http::Server::UrlPrefix ^ Create(System::String ^ prefix);
public static Microsoft.Net.Http.Server.UrlPrefix Create (string prefix);
static member Create : string -> Microsoft.Net.Http.Server.UrlPrefix
Public Shared Function Create (prefix As String) As UrlPrefix

參數

prefix
String

傳回

適用於

Create(String, String, Nullable<Int32>, String)

public:
 static Microsoft::Net::Http::Server::UrlPrefix ^ Create(System::String ^ scheme, System::String ^ host, Nullable<int> portValue, System::String ^ path);
public static Microsoft.Net.Http.Server.UrlPrefix Create (string scheme, string host, int? portValue, string path);
static member Create : string * string * Nullable<int> * string -> Microsoft.Net.Http.Server.UrlPrefix
Public Shared Function Create (scheme As String, host As String, portValue As Nullable(Of Integer), path As String) As UrlPrefix

參數

scheme
String

HTTP 或 HTTPs。 會正規化為小寫。

host
String

+、*、IPv4、[IPv6]或 dns 名稱。 Http.Sys 不允許 punycode (xn--) ,請改用 Unicode。

portValue
Nullable<Int32>

如果為空白,則會使用指定配置的預設埠 (80 或 443) 。

path
String

應該以 '/' 開頭和結尾,但會新增遺漏的尾端斜線。 此值必須解除逸出。

傳回

適用於

Create(String, String, String, String)

public:
 static Microsoft::Net::Http::Server::UrlPrefix ^ Create(System::String ^ scheme, System::String ^ host, System::String ^ port, System::String ^ path);
public static Microsoft.Net.Http.Server.UrlPrefix Create (string scheme, string host, string port, string path);
static member Create : string * string * string * string -> Microsoft.Net.Http.Server.UrlPrefix
Public Shared Function Create (scheme As String, host As String, port As String, path As String) As UrlPrefix

參數

scheme
String

HTTP 或 HTTPs。 會正規化為小寫。

host
String

+、*、IPv4、[IPv6]或 dns 名稱。 Http.Sys 不允許 punycode (xn--) ,請改用 Unicode。

port
String

如果為空白,則會使用指定配置的預設埠 (80 或 443) 。

path
String

應該以 '/' 開頭和結尾,但會新增遺漏的尾端斜線。 此值必須解除逸出。

傳回

適用於