コード例 #1
0
ファイル: SyncCall.cs プロジェクト: tgvishnu/Vishnu.Clauses
 /// <summary>
 /// Creates new instance of <see cref="SyncCall"/> class.
 /// </summary>
 /// <param name="exceptionDelegateCollection"><see cref="ExceptionDelegateCollection"/></param>
 public SyncCall(ExceptionDelegateCollection exceptionDelegateCollection)
 {
     holder = exceptionDelegateCollection;
 }
コード例 #2
0
 /// <summary>
 /// Creates new instance of the <see cref="HandleBuilder"/> class.
 /// </summary>
 /// <param name="exceptionDelegate"><see cref="ExceptionDelegate"/></param>
 public HandleBuilder(ExceptionDelegate exceptionDelegate)
 {
     this.ExceptionDelegateCollection = new ExceptionDelegateCollection();
     this.ExceptionDelegateCollection.Add(exceptionDelegate);
 }