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