Class ModuleDownloadProgressChangedEventArgs
Provides progress information as a module downloads.
Inheritance
System.Object
System.EventArgs
System.ComponentModel.ProgressChangedEventArgs
ModuleDownloadProgressChangedEventArgs
System.ComponentModel.ProgressChangedEventArgs.ProgressPercentage
System.ComponentModel.ProgressChangedEventArgs.UserState
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Presentation.Modularity
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public class ModuleDownloadProgressChangedEventArgs : ProgressChangedEventArgs
Constructors
View SourceModuleDownloadProgressChangedEventArgs(ModuleInfo, Int64, Int64)
Initializes a new instance of the ModuleDownloadProgressChangedEventArgs class.
Declaration
public ModuleDownloadProgressChangedEventArgs(ModuleInfo moduleInfo, long bytesReceived, long totalBytesToReceive)
Parameters
Type | Name | Description |
---|---|---|
ModuleInfo | moduleInfo | The module info. |
System.Int64 | bytesReceived | The bytes received. |
System.Int64 | totalBytesToReceive | The total bytes to receive. |
Properties
View SourceBytesReceived
Gets the bytes received.
Declaration
public long BytesReceived { get; }
Property Value
Type | Description |
---|---|
System.Int64 | The bytes received. |
ModuleInfo
Getsthe module info.
Declaration
public ModuleInfo ModuleInfo { get; }
Property Value
Type | Description |
---|---|
ModuleInfo | The module info. |
TotalBytesToReceive
Gets the total bytes to receive.
Declaration
public long TotalBytesToReceive { get; }
Property Value
Type | Description |
---|---|
System.Int64 | The total bytes to receive. |