Esempio n. 1
0
 /// <summary>
 /// Creates new instance of <see cref="SyncCall"/> class.
 /// </summary>
 /// <param name="exceptionDelegateCollection"><see cref="ExceptionDelegateCollection"/></param>
 public SyncCall(ExceptionDelegateCollection exceptionDelegateCollection)
 {
     holder = exceptionDelegateCollection;
 }
Esempio n. 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);
 }