Class TorrentCreatorEventArgs
Inheritance
System.Object
System.EventArgs
TorrentCreatorEventArgs
Inherited Members
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: MonoTorrent
Assembly: MonoTorrent.dll
Syntax
public class TorrentCreatorEventArgs : EventArgs
Properties
CurrentFile
The path of the current file
Declaration
public string CurrentFile { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
FileBytesHashed
The number of bytes hashed from the current file
Declaration
public long FileBytesHashed { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
FileCompletion
The percentage of the current file which has been hashed (range 0-1)
Declaration
public double FileCompletion { get; }
Property Value
| Type | Description |
|---|---|
| System.Double |
FileSize
The size of the current file
Declaration
public long FileSize { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
OverallBytesHashed
The number of bytes hashed so far
Declaration
public long OverallBytesHashed { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
OverallCompletion
The percentage of the data which has been hashed (range 0-1)
Declaration
public double OverallCompletion { get; }
Property Value
| Type | Description |
|---|---|
| System.Double |
OverallSize
The total number of bytes to hash
Declaration
public long OverallSize { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |