2 instantiations of ExceptionHandler
mscorlib (2)
system\reflection\emit\methodbuilder.cs (2)
283m_exceptions[counter++] = new ExceptionHandler(start, end, filterAddrs[j], catchAddrs[j], catchEndAddrs[j], type[j], tkExceptionClass); 287m_exceptions[counter++] = new ExceptionHandler(start, excp[i].GetFinallyEndAddress(), filterAddrs[j], catchAddrs[j], catchEndAddrs[j], type[j], tkExceptionClass);
18 references to ExceptionHandler
mscorlib (18)
system\reflection\emit\constructorbuilder.cs (1)
213public void SetMethodBody(byte[] il, int maxStack, byte[] localSignature, IEnumerable<ExceptionHandler> exceptionHandlers, IEnumerable<int> tokenFixups)
system\reflection\emit\methodbuilder.cs (15)
42private ExceptionHandler[] m_exceptions; // Exception handlers or null if there are none. 257m_exceptions = new ExceptionHandler[numExceptions]; 441internal ExceptionHandler[] GetExceptionHandlers() 960public void SetMethodBody(byte[] il, int maxStack, byte[] localSignature, IEnumerable<ExceptionHandler> exceptionHandlers, IEnumerable<int> tokenFixups) 981ExceptionHandler[] newHandlers = null; 1036private static void CheckExceptionHandlerRanges(ExceptionHandler[] exceptionHandlers, int maxOffset) 1042var handler = exceptionHandlers[i]; 1405public struct ExceptionHandler : IEquatable<ExceptionHandler> 1575return obj is ExceptionHandler && Equals((ExceptionHandler)obj); 1578public bool Equals(ExceptionHandler other) 1590public static bool operator ==(ExceptionHandler left, ExceptionHandler right) 1595public static bool operator !=(ExceptionHandler left, ExceptionHandler right)
system\reflection\emit\typebuilder.cs (2)
221ExceptionHandler[] exceptions, int numExceptions, 2430ExceptionHandler[] exceptions = meth.GetExceptionHandlers();