Click or drag to resize

IDownload Interface

Represents a download.

Namespace:  DotNetBrowser.Downloads
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public interface IDownload : IAutoDisposable

The IDownload type exposes the following members.

Properties
  NameDescription
Public propertyBrowser
Gets the browser that initiated this download.
Public propertyInfo
Gets the additional information about this download.
Public propertyIsDisposed
Indicates if the object is already disposed.
(Inherited from IAutoDisposable.)
Public propertyIsPaused
Indicates whether this download is paused.
Public propertyState
Gets the current download state.
Top
Methods
  NameDescription
Public methodCancel
Cancels this download. Will have no effect when the download is already cancelled.
Public methodPause
Pauses this download. Will have no effect when the download is already paused.
Public methodResume
Resumes this download. Will have no effect when the download is not paused.
Top
Events
  NameDescription
Public eventCanceled
Occurs when the download was canceled.
Public eventDisposed
Occurs when the object has been disposed.
(Inherited from IAutoDisposable.)
Public eventFinished
Occurs when the download was finished.
Public eventInterrupted
Occurs when the download was interrupted.
Public eventPaused
Occurs when the download was paused.
Public eventUpdated
Occurs when the download state was updated.
Top
See Also