Changeset 9893 for trunk/sources/HeuristicLab.MainForm/3.3/Interfaces
- Timestamp:
- 08/21/13 23:08:47 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IProgress.cs
r9849 r9893 55 55 /// <exception cref="NotSupportedException">Thrown when cancellation is not supported.</exception> 56 56 /// <param name="timeoutMs">The operation is given a certain timeout to cancel. If the operation doesn't cancel in this time it will be forcibly closed.</param> 57 void Cancel(int timeoutMs );57 void Cancel(int timeoutMs = 0); 58 58 /// <summary> 59 59 /// Sets the ProgressValue to 1 and the ProgressState to Finished. 60 60 /// </summary> 61 61 void Finish(); 62 63 void Start(string status); 64 65 void Start(); 62 66 63 67 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.