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

◆ uri_scheme_nntp

const xtd::ustring xtd::uri::uri_scheme_nntp
inlinestatic

Specifies that the URI is an Internet news group and is accessed through the Network News Transport Protocol (NNTP). This field is read-only.

Examples
The following example creates a xtd::uri instance and determines whether the scheme is xtd::uri::uri_scheme_nntp.
Uri address5("nntp://news.contoso.com/123456@contoso.com");
if (address5.scheme() == uri::uri_scheme_nntp)
console::write_line("uri is nntp 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_nntp
Specifies that the URI is an Internet news group and is accessed through the Network News Transport P...
Definition uri.h:211