IMailContactExtract.cs
资源名称:GetFriend.rar [点击查看]
上传用户:asz878
上传日期:2020-04-01
资源大小:189k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
Visual C++
- /*
- * 作者:方宏俊
- * 日期:2008-10-23
- * 描述:邮件好友列表获取接口
- * * */
- using System;
- using System.Collections.Generic;
- using System.Net;
- using System.Text;
- namespace Fhz.Msn.OpenContactsNet
- {
- /// <summary>
- /// 邮件好友列表获取接口,GmailExtract,LiveExtract,YahooExtract具体实现
- /// </summary>
- public interface IMailContactExtract
- {
- /// <summary>
- /// 具体实现类必须实现提取好友接口函数
- /// </summary>
- /// <param name="credential">提供凭据的密码验证身份票据</param>
- /// <param name="list">返回的好友列表</param>
- /// <returns></returns>
- bool Extract( NetworkCredential credential, out MailContactList list );
- }
- }