private string m_pServer_StoreMessage(NNTP_Session ses, MemoryStream msgStream, string[] newsgroups)
 {
     return m_API.StoreMessage(msgStream,newsgroups);
 }
 public NNTP_ListGroups_eArgs(NNTP_Session session,NNTP_NewsGroups groups)
 {
     m_pSession = session;
     m_pGroups  = groups;
 }
 private string m_pServer_GetArticle(NNTP_Session ses, string id, string retVal)
 {
     return retVal = m_API.GetArticle(ses.SelectedGroup,id,retVal);
 }