Ejemplo n.º 1
0
 /// <summary>
 /// Begins a catch block for the given exception type in the given exception block.
 ///
 /// The given exception block must still be open.
 /// </summary>
 public CatchBlock BeginCatchBlock(ExceptionBlock forTry, Type exceptionType)
 {
     return(InnerEmit.BeginCatchBlock(forTry, exceptionType));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Begins a catch block for the given exception type in the given exception block.
 ///
 /// The given exception block must still be open.
 /// </summary>
 public Emit BeginCatchBlock(ExceptionBlock forTry, Type exceptionType, out CatchBlock forCatch)
 {
     InnerEmit.BeginCatchBlock(forTry, exceptionType, out forCatch);
     return(this);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Begins a catch block for the given exception type in the given exception block.
 ///
 /// The given exception block must still be open.
 /// </summary>
 public CatchBlock BeginCatchBlock <ExceptionType>(ExceptionBlock forTry)
 {
     return(InnerEmit.BeginCatchBlock <ExceptionType>(forTry));
 }