Specifies that the URI is an Internet news group and is accessed through the Network News Transport Protocol (NNTP).
using System;
publicclass MainClass{
publicstaticvoid Main(){
Uri address4 = new Uri("news:123456@yourDomain.com");
if (address4.Scheme == Uri.UriSchemeNews)
Console.WriteLine("Uri is an Internet news group");
}
}