12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System.ComponentModel;
- namespace Update.Net.Events
- {
-
-
-
-
- public delegate void DecompressDataStartDelegate(DecompressDataStartArgs e);
-
-
-
- public class DecompressDataStartArgs
- {
-
-
-
- public AsyncOperation Operation { get; private set; }
-
-
-
- public byte[] Data { get; private set; }
-
-
-
- public string DeleteEntry { get; private set; }
-
-
-
- public string LastEntry { get; private set; }
-
-
-
- public string DestinationDirectory { get; private set; }
-
-
-
-
-
-
-
-
- public DecompressDataStartArgs(AsyncOperation asyncOp, byte[] data, string deleteEntry, string lastEntry, string destinationDirectory)
- {
- this.Operation = asyncOp;
- this.Data = data;
- this.DeleteEntry = deleteEntry;
- this.LastEntry = lastEntry;
- this.DestinationDirectory = destinationDirectory;
- }
- }
- }
|