WebClient.OnDownloadDataCompleted(DownloadDataCompletedEventArgs) 方法

定義

引發 DownloadDataCompleted 事件。

protected:
 virtual void OnDownloadDataCompleted(System::Net::DownloadDataCompletedEventArgs ^ e);
protected virtual void OnDownloadDataCompleted (System.Net.DownloadDataCompletedEventArgs e);
abstract member OnDownloadDataCompleted : System.Net.DownloadDataCompletedEventArgs -> unit
override this.OnDownloadDataCompleted : System.Net.DownloadDataCompletedEventArgs -> unit
Protected Overridable Sub OnDownloadDataCompleted (e As DownloadDataCompletedEventArgs)

參數

範例

下列程式代碼範例示範這個方法的實作,這個方法可由衍生自 WebClient的類別自定義。

virtual void OnDownloadDataCompleted( DownloadDataCompletedEventArgs ^ e ) override
{
   // Here you can perform any custom actions before the event is raised
   // and event handlers are called...
   WebClient::OnDownloadDataCompleted( e );

   // Here you can perform any post event actions...
}
protected override void OnDownloadDataCompleted (DownloadDataCompletedEventArgs e)
{
    // Here you can perform any custom actions before the event is raised
    // and event handlers are called...

    base.OnDownloadDataCompleted(e);

    // Here you can perform any post event actions...
}

備註

繼承自這個類別的類別可以覆寫這個方法,以在事件發生時 DownloadDataCompleted 執行其他工作。

引發事件會透過委派叫用此事件處理常式。 如需詳細資訊,請參閱 處理和引發事件

OnDownloadDataCompleted 方法也允許衍生類別處理事件,而不用附加委派。 這是在衍生類別中處理事件的慣用技巧。

給繼承者的注意事項

OnDownloadDataCompleted(DownloadDataCompletedEventArgs) 衍生類別中覆寫時,請務必呼叫基類的 OnDownloadDataCompleted(DownloadDataCompletedEventArgs) 方法,讓已註冊的委派接收事件。

適用於