I would like to create an application to check a news server and alert me if there are new email messages. Does anybody have any C# code that can connect to a NNTP news server?

Thanks, Paul

link|improve this question

64% accept rate
I found this code: using System.Net.Sockets; ... TcpClient Connection; Connection = new TcpClient( Address, Port ); The newsgroup server I am trying to connect to requires authentication. I can figure out how to provide credentials. – Paul May 1 '09 at 6:38
feedback

1 Answer

There are a number of C# NNTP tutorials on the web.

link|improve this answer
This is not a helpful comment. Thank you Captain Obvious. StackOverflow is supposed to be where people can gain the knowledge and avoid web searches – Simon Hartcher Oct 8 '09 at 8:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.