UrlPrefix.Create Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Create(String)
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
public:
static Microsoft::AspNetCore::Server::HttpSys::UrlPrefix ^ Create(System::String ^ prefix);
public static Microsoft.AspNetCore.Server.HttpSys.UrlPrefix Create (string prefix);
static member Create : string -> Microsoft.AspNetCore.Server.HttpSys.UrlPrefix
Public Shared Function Create (prefix As String) As UrlPrefix
Parâmetros
Retornos
Aplica-se a
Create(String, String, Nullable<Int32>, String)
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
public:
static Microsoft::AspNetCore::Server::HttpSys::UrlPrefix ^ Create(System::String ^ scheme, System::String ^ host, Nullable<int> portValue, System::String ^ path);
public static Microsoft.AspNetCore.Server.HttpSys.UrlPrefix Create (string scheme, string host, int? portValue, string path);
static member Create : string * string * Nullable<int> * string -> Microsoft.AspNetCore.Server.HttpSys.UrlPrefix
Public Shared Function Create (scheme As String, host As String, portValue As Nullable(Of Integer), path As String) As UrlPrefix
Parâmetros
- scheme
- String
http ou https. Será normalizado para letras minúsculas.
- host
- String
+, *, IPv4, [IPv6], ou um nome dns. Http.Sys não permite punycode (xn--), use Unicode.
Se estiver vazia, a porta padrão para o esquema especificado será usada (80 ou 443).
- path
- String
Deve começar e terminar com um '/', embora uma barra à direita ausente seja adicionada. Esse valor deve ser não escapado.
Retornos
Aplica-se a
Create(String, String, String, String)
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
- Origem:
- UrlPrefix.cs
public:
static Microsoft::AspNetCore::Server::HttpSys::UrlPrefix ^ Create(System::String ^ scheme, System::String ^ host, System::String ^ port, System::String ^ path);
public static Microsoft.AspNetCore.Server.HttpSys.UrlPrefix Create (string scheme, string host, string port, string path);
static member Create : string * string * string * string -> Microsoft.AspNetCore.Server.HttpSys.UrlPrefix
Public Shared Function Create (scheme As String, host As String, port As String, path As String) As UrlPrefix
Parâmetros
- scheme
- String
http ou https. Será normalizado para letras minúsculas.
- host
- String
+, *, IPv4, [IPv6], ou um nome dns. Http.Sys não permite punycode (xn--), use Unicode.
- port
- String
Se estiver vazia, a porta padrão para o esquema especificado será usada (80 ou 443).
- path
- String
Deve começar e terminar com um '/', embora uma barra à direita ausente seja adicionada. Esse valor deve ser não escapado.