| Specifies that the URI is an Internet news group and is accessed through the Network News Transport Protocol (NNTP). |
|
|
using System;
public class MainClass{
public static void Main(){
Uri address4 = new Uri("news:[email protected]");
if (address4.Scheme == Uri.UriSchemeNews)
Console.WriteLine("Uri is an Internet news group");
}
}
|
|
|
| Related examples in the same category |