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