Exemplo n.º 1
0
 /// <summary>
 /// принудительная обертка в try-catch для последнего бинда
 /// </summary>
 /// <param name="onException"></param>
 /// <returns></returns>
 public Task <Task> BindCatch(Action <Exception> onException)
 {
     next = null;
     return(firstNode.BindCatchFirst(onException));
 }
Exemplo n.º 2
0
 private StackTracingHelper(StackTracingHelper first)
 {
     this.firstNode = first;
 }
Exemplo n.º 3
0
 public Task Bind()
 {
     next = null;
     return(firstNode.BindFirst());
 }
Exemplo n.º 4
0
 public StackTracingHelper()
 {
     firstNode = this;
 }