IMailContactExtract.cs
上传用户:asz878
上传日期:2020-04-01
资源大小:189k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

Visual C++

  1. /*
  2.  * 作者:方宏俊
  3.  * 日期:2008-10-23
  4.  * 描述:邮件好友列表获取接口
  5.  * *                  */
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Net;
  9. using System.Text;
  10. namespace Fhz.Msn.OpenContactsNet
  11. {
  12.     /// <summary>
  13.     ///  邮件好友列表获取接口,GmailExtract,LiveExtract,YahooExtract具体实现
  14.     /// </summary>
  15.     public interface IMailContactExtract
  16.     {
  17.         /// <summary>
  18.         /// 具体实现类必须实现提取好友接口函数
  19.         /// </summary>
  20.         /// <param name="credential">提供凭据的密码验证身份票据</param>
  21.         /// <param name="list">返回的好友列表</param>
  22.         /// <returns></returns>
  23.         bool Extract( NetworkCredential credential, out MailContactList list );
  24.     }
  25. }