原創(chuàng)|使用教程|編輯:黃竹雯|2017-07-25 15:32:28.000|閱讀 287 次
概述:本文主要介紹了POP3認(rèn)證的代碼示例。目前MailBee.NET Objects在線訂購(gòu)享75折優(yōu)惠正在進(jìn)行中,歡迎您下載試用版進(jìn)行運(yùn)用!
# 界面/圖表報(bào)表/文檔/IDE等千款熱門(mén)軟控件火熱銷(xiāo)售中 >>
相關(guān)鏈接:
C#
Pop3 pop = new Pop3();
pop.Connect("mail.domain.com");
pop.Login("jdoe", "secret");
VB.NET
Dim pop As New Pop3()
pop.Connect("mail.domain.com")
pop.Login("jdoe", "secret")
C#
Pop3 pop = new Pop3();
pop.Connect("mail.domain.com");
pop.Login("jdoe", "secret", AuthenticationMethods.Apop);
VB.NET
Dim pop As New Pop3()
pop.Connect("mail.domain.com")
pop.Login("jdoe", "secret", AuthenticationMethods.Apop)
C#
pop.Login("jdoe", "secret", AuthenticationMethods.Auto, AuthenticationOptions.PreferSimpleMethods, null);
VB.NET
pop.Login("jdoe", "secret", AuthenticationMethods.Auto, AuthenticationOptions.PreferSimpleMethods, Nothing)
C#
pop.Login(null, null, AuthenticationMethods.SaslNtlm);
VB.NET
pop.Login(Nothing, Nothing, AuthenticationMethods.SaslNtlm)
試用、下載、了解更多產(chǎn)品信息請(qǐng)點(diǎn)擊""
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請(qǐng)務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請(qǐng)郵件反饋至chenjj@fc6vip.cn