|
The NNTP Client is a component from the Clever Internet .NET Suite library. It allows you to retrieves news to your local computer via the Network News Transfer Protocol (NNTP) as described in RFC 977.
Using NNTP component, you can easily build custom news readers with no knowledge of NNTP commands.
- 100% managed code
- Read, Post and List news articles
- Navigate through all the available news Groups on a server
- Check news in pipelining mode
- Support for different news reader Modes: Stream, Reader, IHave
- Optional Authentication
- Free one year upgrades and support
The NNTP component allows retrieving information from the article overview database maintained on the most news-servers and provides the result in a notification event. You can always retrieve a description of the overview database format used by the server by using a special Overview Format method.
With NNTP component you can:
- Get all available news groups and articles on the server
- Get only new groups and articles which were added starting from the specified date
- Get detailed statistical information about selected News Group
and much more...
nntp1.Server = "news.domain.com"; nntp1.Open(); nntp1.SelectGroup("groupname"); string[] article = nntp1.GetArticle(articleNo); string[] body = nntp1.GetBody(articleNo); string[] header = nntp1.GetHeader(articleNo); |
Please see the Demos code (NewsGroups) and also the indexed Help documentation provided with the Clever Internet .NET Suite installation to learn more about using this component in your application.
When Purchasing the Clever Internet .NET Suite you receive the full sources for all suite components and also free unlimited support.
|