2 instantiations of ExceptionHandler
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (2)
210m_exceptions[counter++] = new ExceptionHandler(start, end, filterAddrs[j], catchAddrs[j], catchEndAddrs[j], type[j], tkExceptionClass); 214m_exceptions[counter++] = new ExceptionHandler(start, excp[i].GetFinallyEndAddress(), filterAddrs[j], catchAddrs[j], catchEndAddrs[j], type[j], tkExceptionClass);
13 references to ExceptionHandler
System.Private.CoreLib (13)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (11)
31private ExceptionHandler[]? m_exceptions; // Exception handlers or null if there are none. 184m_exceptions = new ExceptionHandler[numExceptions]; 321internal ExceptionHandler[]? GetExceptionHandlers() 851internal readonly struct ExceptionHandler : IEquatable<ExceptionHandler> 910return obj is ExceptionHandler && Equals((ExceptionHandler)obj); 913public bool Equals(ExceptionHandler other) 925public static bool operator ==(ExceptionHandler left, ExceptionHandler right) => left.Equals(right); 927public static bool operator !=(ExceptionHandler left, ExceptionHandler right) => !left.Equals(right);
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (2)
84ExceptionHandler[]? exceptions, int numExceptions, 1637ExceptionHandler[]? exceptions = meth.GetExceptionHandlers();