UrlPrefix.Create Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Create(String)
- Source:
- UrlPrefix.cs
- Source:
- UrlPrefix.cs
- Source:
- 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
Paramètres
Retours
S’applique à
Create(String, String, Nullable<Int32>, String)
- Source:
- UrlPrefix.cs
- Source:
- UrlPrefix.cs
- Source:
- 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
Paramètres
- scheme
- String
http ou https. Sera normalisé en minuscules.
- host
- String
+, *, IPv4, [IPv6], ou un nom dns. Http.Sys n’autorise pas le punycode (xn--), utilisez Unicode à la place.
S’il est vide, le port par défaut du schéma donné est utilisé (80 ou 443).
- path
- String
Doit commencer et se terminer par un « / », bien qu’une barre oblique de fin manquante soit ajoutée. Cette valeur doit être sans échappement.
Retours
S’applique à
Create(String, String, String, String)
- Source:
- UrlPrefix.cs
- Source:
- UrlPrefix.cs
- Source:
- 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
Paramètres
- scheme
- String
http ou https. Sera normalisé en minuscules.
- host
- String
+, *, IPv4, [IPv6], ou un nom dns. Http.Sys n’autorise pas le punycode (xn--), utilisez Unicode à la place.
- port
- String
S’il est vide, le port par défaut du schéma donné est utilisé (80 ou 443).
- path
- String
Doit commencer et se terminer par un « / », bien qu’une barre oblique de fin manquante soit ajoutée. Cette valeur doit être sans échappement.