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

◆ uri_scheme_gopher

const xtd::ustring xtd::uri::uri_scheme_gopher
inlinestatic

Specifies that the URI is accessed through the Gopher protocol. This field is read-only.

Examples
The following example creates a xtd::uri instance and determines whether the scheme is xtd::uri::uri_scheme_gopher.
uri address6("gopher://example.contoso.com/");
if (address6.scheme() == uri::uri_scheme_gopher)
console::write_line("uri is gopher protocol");
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
static const xtd::ustring uri_scheme_gopher
Specifies that the URI is accessed through the Gopher protocol. This field is read-only.
Definition uri.h:150
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts...
Definition uri.h:103