27 references to ExceptionHandlingClauseOptions
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
456[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Reflection.ExceptionHandlingClauseOptions))]
netstandard (1)
netstandard.cs (1)
1424[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Reflection.ExceptionHandlingClauseOptions))]
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\Reflection\ExceptionHandlingClause.cs (1)
11public virtual ExceptionHandlingClauseOptions Flags => default;
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (9)
830internal readonly ExceptionHandlingClauseOptions m_kind; 842Debug.Assert(IsValidKind((ExceptionHandlingClauseOptions)kind)); 843Debug.Assert(kind != (int)ExceptionHandlingClauseOptions.Clause || (exceptionTypeToken & 0x00FFFFFF) != 0); 850m_kind = (ExceptionHandlingClauseOptions)kind; 854private static bool IsValidKind(ExceptionHandlingClauseOptions kind) => 856ExceptionHandlingClauseOptions.Clause or 857ExceptionHandlingClauseOptions.Filter or 858ExceptionHandlingClauseOptions.Finally or 859ExceptionHandlingClauseOptions.Fault;
src\System\Reflection\RuntimeExceptionHandlingClause.cs (6)
15private ExceptionHandlingClauseOptions _flags; 23public override ExceptionHandlingClauseOptions Flags => _flags; 33if (_flags != ExceptionHandlingClauseOptions.Filter) 49if (_flags != ExceptionHandlingClauseOptions.Clause) 68if (Flags == ExceptionHandlingClauseOptions.Clause) 74if (Flags == ExceptionHandlingClauseOptions.Filter)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingExceptionHandlingClause.cs (1)
29public override ExceptionHandlingClauseOptions Flags
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\General\Ecma\EcmaHelpers.cs (2)
96public static ExceptionHandlingClauseOptions ToExceptionHandlingClauseOptions(this ExceptionRegionKind kind) => (ExceptionHandlingClauseOptions)kind;
System\Reflection\TypeLoading\MethodBase\RoExceptionHandlingClause.cs (5)
9private readonly ExceptionHandlingClauseOptions _flags; 16internal RoExceptionHandlingClause(Type? catchType, ExceptionHandlingClauseOptions flags, int filterOffset, int tryOffset, int tryLength, int handlerOffset, int handlerLength) 27public sealed override Type? CatchType => _flags == ExceptionHandlingClauseOptions.Clause ? _catchType : throw new InvalidOperationException(SR.NotAClause); 28public sealed override ExceptionHandlingClauseOptions Flags => _flags; 29public sealed override int FilterOffset => _flags == ExceptionHandlingClauseOptions.Filter ? _filterOffset : throw new InvalidOperationException(SR.NotAFilter);
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
461[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Reflection.ExceptionHandlingClauseOptions))]