annotate Implab/ValueEventArgs.cs @ 209:a867536c68fc
v2
Bound promise to CancellationToken
Added new states to ExecutionSate enum.
Added Safe.Guard() method to handle cleanup of the result of the promise
author |
cin |
date |
Wed, 16 Nov 2016 03:06:08 +0300 |
parents |
eb418ba8275b |
children |
|
rev |
line source |
7
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5
|
|
6 namespace Implab
|
|
7 {
|
12
|
8 [Serializable]
|
7
|
9 public class ValueEventArgs<T>: EventArgs
|
|
10 {
|
|
11 public ValueEventArgs(T value)
|
|
12 {
|
|
13 this.Value = value;
|
|
14 }
|
|
15 public T Value
|
|
16 {
|
|
17 get;
|
|
18 private set;
|
|
19 }
|
|
20 }
|
|
21 }
|