##// END OF EJS Templates
minor changes
cin -
r114:3fbc6eb93eb1 v2
parent child
Show More
@@ -1,19 +1,21
1 1 using System;
2 2
3 3 namespace Implab {
4 4 [Flags]
5 5 public enum PromiseEventType {
6 6 Success = 1,
7 7 Error = 2,
8 8 Cancelled = 4,
9 9 /// <summary>
10 10 /// Завершено успешно, либо возникла ошибка,
11 11 /// </summary>
12 12 All = 7,
13 13 /// <summary>
14 14 /// Заврешено успешно, либо возникла ошибка.
15 15 /// </summary>
16 Complete = 3
16 Complete = 3,
17
18 ErrorOrCancel = 6
17 19 }
18 20 }
19 21
General Comments 0
You need to be logged in to leave comments. Login now