GroupSearch Event

Fired for each line of group search data (during group searches).

Syntax

public event OnGroupSearchHandler OnGroupSearch;

public delegate void OnGroupSearchHandler(object sender, NntpGroupSearchEventArgs e);

public class NntpGroupSearchEventArgs : EventArgs {
  public long ArticleNumber { get; }
  public string Header { get; }
}
Public Event OnGroupSearch As OnGroupSearchHandler

Public Delegate Sub OnGroupSearchHandler(sender As Object, e As NntpGroupSearchEventArgs)

Public Class NntpGroupSearchEventArgs Inherits EventArgs
  Public ReadOnly Property ArticleNumber As Long
  Public ReadOnly Property Header As String
End Class

Remarks

ArticleNumber contains the number of the article within the group.

Header contains the matching header.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 .NET Edition - Version 20.0 [Build 8307]