Uri.SchemeDelimiter Champ
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.
Spécifie les caractères qui séparent le schéma du protocole de communication de la partie adresse de l'URI. Ce champ est en lecture seule.
public: static initonly System::String ^ SchemeDelimiter;
public static readonly string SchemeDelimiter;
staticval mutable SchemeDelimiter : string
Public Shared ReadOnly SchemeDelimiter As String
Valeur de champ
Exemples
L’exemple suivant crée une chaîne à partir de UriSchemeHttp, SchemeDelimiteret d’une adresse. Une Uri instance est ensuite créée à partir de la chaîne .
String^ address = "www.contoso.com";
String^ uriString = String::Format( "{0}{1}{2}",
Uri::UriSchemeHttp, Uri::SchemeDelimiter, address );
#if OLDMETHOD
Uri^ result;
if ( Uri::TryParse( uriString, false, false, result ) == true )
{
Console::WriteLine( "{0} is a valid Uri", result );
}
else
{
Console::WriteLine( "Uri not created" );
}
#endif
Uri ^result = gcnew Uri(uriString);
if (result->IsWellFormedOriginalString())
Console::WriteLine("{0} is a well formed Uri", uriString);
else
Console::WriteLine("{0} is not a well formed Uri", uriString);
string address = "www.contoso.com";
string uriString = String.Format("{0}{1}{2}/", Uri.UriSchemeHttp, Uri.SchemeDelimiter, address);
#if OLDMETHOD
Uri result;
if (Uri.TryParse(uriString, false, false, out result) == true)
Console.WriteLine("{0} is a valid Uri", result.ToString());
else
Console.WriteLine("Uri not created");
#endif
Uri result = new Uri(uriString);
if (result.IsWellFormedOriginalString())
Console.WriteLine("{0} is a well formed Uri", uriString);
else
Console.WriteLine("{0} is not a well formed Uri", uriString);
let address = "www.contoso.com"
let uriString = $"{Uri.UriSchemeHttp}{Uri.SchemeDelimiter}{address}/"
#if OLDMETHOD
match Uri.TryParse(uriString, false, false) with
| true, result ->
printfn $"{result} is a valid Uri"
| _ ->
printfn "Uri not created"
#endif
let result = Uri uriString
if result.IsWellFormedOriginalString() then
printfn $"{uriString} is a well formed Uri"
else
printfn $"{uriString} is not a well formed Uri"
Dim address As String = "www.contoso.com"
Dim uriString As String = String.Format("{0}{1}{2}", Uri.UriSchemeHttp, Uri.SchemeDelimiter, address)
Dim result As Uri = New Uri(uriString)
If result.IsWellFormedOriginalString() = True Then
Console.WriteLine("{0} is a well formed Uri", uriString)
else
Console.WriteLine("{0} is not a well formed Uri", uriString)
End If
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.