xtd 0.2.0
Loading...
Searching...
No Matches

◆ uri_scheme_ftp

const xtd::string xtd::uri::uri_scheme_ftp
inlinestatic

Specifies that the URI is accessed through the File Transfer Protocol (FTP). This field is read-only.

Examples
The following example creates a xtd::uri instance and determines whether the scheme is xtd::uri::uri_scheme_ftp.
uri address7("ftp://contoso/files/testfile.txt");
if (address7.scheme() == uri::uri_scheme_ftp)
console::write_line("uri is ftp protocol");
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
static const xtd::string uri_scheme_ftp
Specifies that the URI is accessed through the File Transfer Protocol (FTP). This field is read-only.
Definition uri.h:140
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts...
Definition uri.h:103