예제 #1
0
 private AsyncState(TAsyncState state, T value)
 {
     State = state;
     Value = value;
 }
예제 #2
0
 private AsyncState(TAsyncState state, E error)
 {
     State = state;
     Error = error;
 }
예제 #3
0
 private AsyncState(TAsyncState state)
 {
     State = state;
 }