Mercurial > pub > ImplabNet
view Implab/PromiseEventType.cs @ 113:468d156e434e v2-1
working on linked list
author | cin |
---|---|
date | Wed, 10 Dec 2014 01:29:53 +0100 |
parents | 5f10d54b45df |
children | 3fbc6eb93eb1 |
line wrap: on
line source
using System; namespace Implab { [Flags] public enum PromiseEventType { Success = 1, Error = 2, Cancelled = 4, /// <summary> /// Завершено успешно, либо возникла ошибка, /// </summary> All = 7, /// <summary> /// Заврешено успешно, либо возникла ошибка. /// </summary> Complete = 3 } }