Mega Code Archive

 
Categories / C# / Network
 

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:123456@yourDomain.com");         if (address4.Scheme == Uri.UriSchemeNews)             Console.WriteLine("Uri is an Internet news group");    } }