WebClient.OnDownloadProgressChanged(DownloadProgressChangedEventArgs) 方法

定義

引發 DownloadProgressChanged 事件。

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

參數

範例

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

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

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

    base.OnDownloadProgressChanged (e);

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

備註

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

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

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

給繼承者的注意事項

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

適用於