Freigeben über


Uri.SchemeDelimiter-Feld

Gibt die Zeichen an, die das Schema des Kommunikationsprotokolls vom Adressteil des URIs trennen. Dieses Feld ist schreibgeschützt.

Namespace: System
Assembly: System (in system.dll)

Syntax

'Declaration
Public Shared ReadOnly SchemeDelimiter As String
'Usage
Dim value As String

value = Uri.SchemeDelimiter
public static readonly string SchemeDelimiter
public:
static initonly String^ SchemeDelimiter
public static final String SchemeDelimiter
public static final var SchemeDelimiter : String

Beispiel

Im folgenden Beispiel wird eine Zeichenfolge aus UriSchemeHttp, SchemeDelimiter und einer Adresse erstellt. Aus der Zeichenfolge wird dann eine Uri-Instanz erstellt.

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
            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);

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

Uri-Klasse
Uri-Member
System-Namespace