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

GroupList Event

Fired while group data transfers (during group listings).

Syntax

[VB.NET]
Public Event OnGroupList As OnGroupListHandler
[C#]
public event OnGroupListHandler OnGroupList;

public delegate void OnGroupListHandler(object sender, NntpGroupListEventArgs e);

class NntpGroupListEventArgs : EventArgs {
  string Group {get;}
  long FirstArticle {get;}
  long LastArticle {get;}
  bool CanPost {get;}
}

Remarks

The GroupList event is fired for every group reported by the NewsServer when the ListGroups or ListNewGroups method is called.

The Group parameter shows the name of the group.

The FirstArticle and LastArticle parameters contain the article numbers for the first and last articles in the group.

The CanPost is True or False depending on whether article posting is allowed in the group specified by Group.

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