System.Reflection.Metadata.ExceptionRegion
namespace System.Reflection.Metadata
{
public struct ExceptionRegion
{
public ExceptionRegionKind Kind { get; }
public int TryOffset { get; }
public int TryLength { get; }
public int HandlerOffset { get; }
public int HandlerLength { get; }
public int FilterOffset { get; }
public EntityHandle CatchType { get; }
}
}