public void ListGroups()
 {
     using (var client = new Rfc977NntpClientWithExtensions())
     {
         client.ConnectTest();
         client.SendModeReader();
         foreach (var h in client.RetrieveNewsgroups("alt.*"))
         {
             Console.WriteLine(h);
         }
     }
 }