2 instantiations of ExceptionRegion
System.Reflection.Metadata (2)
System\Reflection\Metadata\IL\MethodBodyBlock.cs (2)
203result[i] = new ExceptionRegion(kind, tryOffset, tryLength, handlerOffset, handlerLength, classTokenOrFilterOffset); 220result[i] = new ExceptionRegion(sehFlags, tryOffset, tryLength, handlerOffset, handlerLength, classTokenOrFilterOffset);
11 references to ExceptionRegion
System.Reflection.Metadata (10)
System\Reflection\Metadata\IL\MethodBodyBlock.cs (10)
19private readonly ImmutableArray<ExceptionRegion> _exceptionRegions; 26ImmutableArray<ExceptionRegion> exceptionRegions, 62public ImmutableArray<ExceptionRegion> ExceptionRegions 114ImmutableArray<ExceptionRegion>.Empty, 155ImmutableArray<ExceptionRegion> exceptionHandlers; 180exceptionHandlers = ImmutableArray<ExceptionRegion>.Empty; 192private static ImmutableArray<ExceptionRegion> ReadSmallExceptionHandlers(ref BlobReader memReader, int count) 194var result = new ExceptionRegion[count]; 209private static ImmutableArray<ExceptionRegion> ReadFatExceptionHandlers(ref BlobReader memReader, int count) 211var result = new ExceptionRegion[count];
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodBody.cs (1)
62ImmutableArray<ExceptionRegion> regions = Block.ExceptionRegions;