Uri.UriSchemeGopher Feld

Definition

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

public: static initonly System::String ^ UriSchemeGopher;
public static readonly string UriSchemeGopher;
 staticval mutable UriSchemeGopher : string
Public Shared ReadOnly UriSchemeGopher As String 

Feldwert

Beispiele

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

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

Gilt für: