Uri::UriSchemeFtp Field

 

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 initonly String^ UriSchemeFtp

Field Value

Type: System::String^

The following example creates a Uri instance and determines whether the scheme is UriSchemeFtp.

Uri^ address7 = gcnew Uri( "ftp://contoso/files/testfile.txt" );
if ( address7->Scheme == Uri::UriSchemeFtp )
{
   Console::WriteLine( "Uri is Ftp protocol" );
}

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: