2 instantiations of ExceptionHandler
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (2)
210
m_exceptions[counter++] = new
ExceptionHandler
(start, end, filterAddrs[j], catchAddrs[j], catchEndAddrs[j], type[j], tkExceptionClass);
214
m_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)
31
private
ExceptionHandler
[]? m_exceptions; // Exception handlers or null if there are none.
184
m_exceptions = new
ExceptionHandler
[numExceptions];
321
internal
ExceptionHandler
[]? GetExceptionHandlers()
851
internal readonly struct ExceptionHandler : IEquatable<
ExceptionHandler
>
902
return obj is
ExceptionHandler
&& Equals((
ExceptionHandler
)obj);
905
public bool Equals(
ExceptionHandler
other)
917
public static bool operator ==(
ExceptionHandler
left,
ExceptionHandler
right) => left.Equals(right);
919
public static bool operator !=(
ExceptionHandler
left,
ExceptionHandler
right) => !left.Equals(right);
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (2)
84
ExceptionHandler
[]? exceptions, int numExceptions,
1637
ExceptionHandler
[]? exceptions = meth.GetExceptionHandlers();