|
Features | Detailed Description
The NNTP Client is a component from the Clever Internet 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.
Available in .NET, VCL and ActiveX editions.
- 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...
// [Delphi]
clNntp1.Server := 'news.domain.com';
clNntp1.Open();
clNntp1.SelectGroup('groupname');
clNntp1.GetArticle(articleNo, article); |
// [C#]
nntp1.Server = "news.domain.com";
nntp1.Open();
nntp1.SelectGroup("groupname");
string[] article = nntp1.GetArticle(articleNo); |
Please see the Demos code (NewsGroups) and also the indexed Help documentation provided with the Clever Internet Suite installation to learn more about using this component in your application.
Includes support for Delphi, C++Builder, C#, VB.NET and Javascript.
When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.
|