C#-如何使用C#程序列写Hotmail中的联系人清单?

发布于 2017-02-02 11:36:16 字数 0 浏览 1083 评论 1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2017-05-12 12:14:40

Google 中的开源项目,MSNPSharp,提供了支持。
程序可以从这里下载,
http://code.google.com/p/msnp-sharp/

在使用的时候,需要注意这些事件处理程序对于获得MSN连接状态以及进行处理很重要。
messenger.NameserverProcessor.ConnectionEstablished += new EventHandler<EventArgs>(NameserverProcessor_ConnectionEstablished);
messenger.Nameserver.AuthenticationError += new EventHandler<ExceptionEventArgs>(Nameserver_AuthenticationError);
messenger.Nameserver.ServerErrorReceived += new EventHandler<MSNErrorEventArgs>(Nameserver_ServerErrorReceived);
messenger.Nameserver.ExceptionOccurred += new EventHandler<ExceptionEventArgs>(Nameserver_ExceptionOccurred);
messenger.Nameserver.SignedIn += new EventHandler<EventArgs>(Nameserver_SignedIn);

这里是登录的方法,

private void button1_Click(object sender, EventArgs e)
{

if (messenger.Connected)
{
messenger.Disconnect();
}

// set the credentials, this is ofcourse something every MSNPSharp program will need to implement.
messenger.Credentials =
new Credentials(LoginEmail, Password, MsnProtocol.MSNP18);

// inform the user what is happening and try to connecto to the messenger network.
messenger.Connect();

}

这是列写联系人,联系人昵称(就是你在MSN Messenger中自定义的用户名称)以及电子邮件。
private void Nameserver_SignedIn(object sender, EventArgs e)
{
<coding-2 lang="other">
if (InvokeRequired)
{
BeginInvoke(new EventHandler(Nameserver_SignedIn), sender, e);
return;
}

foreach (Contact contact in messenger.ContactList.All)
{
PrintOut(
contact.Name + " | " +
contact.Mail + " | " +
contact.NickName + "| n");
}
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文