This documentation is archived and is not being maintained.
Uri.UriSchemeFtp Field
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Specifies that the URI is accessed through the File Transfer Protocol (FTP). This field is read-only.
Namespace:
System
Assembly:
System (in System.dll)
public static readonly string UriSchemeFtp
The following example creates a Uri instance and determines whether the scheme is UriSchemeFtp.
Uri address9 = new Uri("ftp://contoso/files/testfile.txt");
if (address9.Scheme == Uri.UriSchemeFtp)
outputBlock.Text += "Uri is Ftp protocol\n";
Windows Phone OS
Supported in: 8.1, 8.0, 7.1, 7.0