10 references to Catch
Microsoft.CodeAnalysis (1)
PEWriter\ExceptionHandlerRegion.cs (1)
136get { return ExceptionRegionKind.Catch; }
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\ILBuilderVisualizer.cs (1)
111case System.Reflection.Metadata.ExceptionRegionKind.Catch:
System.Reflection.Emit (2)
System\Reflection\Emit\ILGeneratorImpl.cs (2)
64case ExceptionRegionKind.Catch: 121_exceptionBlocks.Add(new ExceptionHandlerInfo(ExceptionRegionKind.Catch, currentExBlock.TryStart,
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\Encoding\ControlFlowBuilder.cs (2)
213AddExceptionRegion(ExceptionRegionKind.Catch, tryStart, tryEnd, handlerStart, handlerEnd, catchType: catchType); 397ExceptionRegionKind.Catch => MetadataTokens.GetToken(handler.CatchType),
System\Reflection\Metadata\Ecma335\Encoding\ExceptionRegionEncoder.cs (3)
160return Add(ExceptionRegionKind.Catch, tryOffset, tryLength, handlerOffset, handlerLength, catchType, 0); 191/// or nil if <paramref name="kind"/> is not <see cref="ExceptionRegionKind.Catch"/> 235case ExceptionRegionKind.Catch:
System\Reflection\Metadata\IL\ExceptionRegion.cs (1)
81get { return (Kind == ExceptionRegionKind.Catch) ? new EntityHandle((uint)_classTokenOrFilterOffset) : default(EntityHandle); }