Freigeben über


Uri.UriSchemeGopher-Feld

Gibt an, dass auf den URI über das Gopher-Protokoll zugegriffen wird. Dieses Feld ist schreibgeschützt.

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

Syntax

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

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

Beispiel

Im folgenden Beispiel wird eine Uri-Instanz erstellt und bestimmt, ob das Schema UriSchemeGopher ist.

Dim address6 As New Uri("gopher://example.contoso.com/")
If address6.Scheme = Uri.UriSchemeGopher Then
    Console.WriteLine("Uri is Gopher protocol")
Uri address6 = new Uri("gopher://example.contoso.com/");
if (address6.Scheme == Uri.UriSchemeGopher)
    Console.WriteLine("Uri is Gopher protocol");

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