SmtpClient.OnSendCompleted(AsyncCompletedEventArgs) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
引發 SendCompleted 事件。
protected:
void OnSendCompleted(System::ComponentModel::AsyncCompletedEventArgs ^ e);
protected void OnSendCompleted (System.ComponentModel.AsyncCompletedEventArgs e);
member this.OnSendCompleted : System.ComponentModel.AsyncCompletedEventArgs -> unit
Protected Sub OnSendCompleted (e As AsyncCompletedEventArgs)
參數
包含事件資料的 AsyncCompletedEventArgs。
備註
繼承自 類別的 SmtpClient 類別可以覆寫 方法, OnSendCompleted 以在事件發生時 SendCompleted 執行其他工作。
OnSendCompleted 也允許衍生類別處理 SendCompleted ,而不附加委派。 這是衍生類別中處理 SendCompleted 慣用的技術。
給繼承者的注意事項
在 OnSendCompleted(AsyncCompletedEventArgs) 衍生類別中覆寫時,請務必呼叫基類的 OnSendCompleted(AsyncCompletedEventArgs) 方法,讓已註冊的委派接收 SendCompleted 事件。