IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

GroupOverview Event

Fired for each line of article overview data (during group overviews).

Syntax

[VB.NET]
Public Event OnGroupOverview As OnGroupOverviewHandler
[C#]
public event OnGroupOverviewHandler OnGroupOverview;

public delegate void OnGroupOverviewHandler(object sender, NntpGroupOverviewEventArgs e);

class NntpGroupOverviewEventArgs : EventArgs {
  long ArticleNumber {get;}
  string Subject {get;}
  string From {get;}
  string ArticleDate {get;}
  string MessageId {get;}
  string References {get;}
  long ArticleSize {get;}
  long ArticleLines {get;}
  string OtherHeaders {get;}
}

Remarks

ArticleNumber contains the number of the article within the group.

Subject contains the subject of the article.

From contains the email address of the article author.

ArticleDate contains the date the article was posted.

MessageId contains the unique message id for the article.

References contains the message ids for the articles this article refers to (separated by spaces).

ArticleSize contains the size of the article in bytes.

ArticleLines contains the number of lines in the article.

OtherHeaders contains any other article headers that NewsServer chooses to display for the article.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]