コード例 #1
0
ファイル: Message.cs プロジェクト: JBTech/MailSystem.NET
 public IAsyncResult BeginAppend(IMailbox imapMailbox, AsyncCallback callback)
 {
     this._delegateAppend = this.Append;
     return this._delegateAppend.BeginInvoke(imapMailbox, callback, this._delegateAppend);
 }
コード例 #2
0
ファイル: Mailbox.cs プロジェクト: Inzaghi2012/teamlab.v7.5
 public IAsyncResult BeginAppend(string messageLiteral, AsyncCallback callback)
 {
     this._delegateAppend = this.Append;
     return this._delegateAppend.BeginInvoke(messageLiteral, callback, this._delegateAppend);
 }