Freigeben über


Uri.UriSchemeFtp-Feld

Gibt an, dass auf den URI über FTP (File Transfer Protocol) zugegriffen wird. Dieses Feld ist schreibgeschützt.

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

Syntax

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

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

Beispiel

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

Dim address7 As New Uri("ftp://contoso/files/testfile.txt")
If address7.Scheme = Uri.UriSchemeFtp Then
    Console.WriteLine("Uri is Ftp protocol")
Uri address7 = new Uri("ftp://contoso/files/testfile.txt");
if (address7.Scheme == Uri.UriSchemeFtp)
    Console.WriteLine("Uri is Ftp 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