12345678910111213141516171819202122232425262728293031323334353637 |
- using System.ComponentModel;
- namespace Update.Net.Events
- {
-
-
-
-
- public delegate void KillProcessStartDelegate(KillProcessStartArgs e);
-
-
-
- public class KillProcessStartArgs
- {
-
-
-
- public AsyncOperation Operation { get; private set; }
-
-
-
- public string Directory { get; private set; }
-
-
-
-
-
- public KillProcessStartArgs(AsyncOperation asyncOp, string directory)
- {
- this.Operation = asyncOp;
- this.Directory = directory;
- }
- }
- }
|