m
This commit is contained in:
@@ -0,0 +1,163 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.ExceptionServices;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Represents one or more errors that occur during application execution.</summary>
|
||||
// Token: 0x0200008E RID: 142
|
||||
[Token(Token = "0x200008E")]
|
||||
[DebuggerDisplay("Count = {InnerExceptionCount}")]
|
||||
[Serializable]
|
||||
public class AggregateException : Exception
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with a system-supplied message that describes the error.</summary>
|
||||
// Token: 0x06000458 RID: 1112 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000458")]
|
||||
[Address(RVA = "0x2D009C0", Offset = "0x2CFF9C0", VA = "0x182D009C0")]
|
||||
public AggregateException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with references to the inner exceptions that are the cause of this exception.</summary>
|
||||
/// <param name="innerExceptions">The exceptions that are the cause of the current exception.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="innerExceptions" /> argument is null.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">An element of <paramref name="innerExceptions" /> is null.</exception>
|
||||
// Token: 0x06000459 RID: 1113 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000459")]
|
||||
[Address(RVA = "0x2D00120", Offset = "0x2CFF120", VA = "0x182D00120")]
|
||||
public AggregateException(IEnumerable<Exception> innerExceptions)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with references to the inner exceptions that are the cause of this exception.</summary>
|
||||
/// <param name="innerExceptions">The exceptions that are the cause of the current exception.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="innerExceptions" /> argument is null.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">An element of <paramref name="innerExceptions" /> is null.</exception>
|
||||
// Token: 0x0600045A RID: 1114 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045A")]
|
||||
[Address(RVA = "0x2D004D0", Offset = "0x2CFF4D0", VA = "0x182D004D0")]
|
||||
public AggregateException(params Exception[] innerExceptions)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with a specified error message and references to the inner exceptions that are the cause of this exception.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
/// <param name="innerExceptions">The exceptions that are the cause of the current exception.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="innerExceptions" /> argument is null.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">An element of <paramref name="innerExceptions" /> is null.</exception>
|
||||
// Token: 0x0600045B RID: 1115 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045B")]
|
||||
[Address(RVA = "0x2D00A80", Offset = "0x2CFFA80", VA = "0x182D00A80")]
|
||||
public AggregateException(string message, IEnumerable<Exception> innerExceptions)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with a specified error message and references to the inner exceptions that are the cause of this exception.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
/// <param name="innerExceptions">The exceptions that are the cause of the current exception.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="innerExceptions" /> argument is null.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">An element of <paramref name="innerExceptions" /> is null.</exception>
|
||||
// Token: 0x0600045C RID: 1116 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045C")]
|
||||
[Address(RVA = "0x2D00600", Offset = "0x2CFF600", VA = "0x182D00600")]
|
||||
public AggregateException(string message, params Exception[] innerExceptions)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600045D RID: 1117 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045D")]
|
||||
[Address(RVA = "0x2D001F0", Offset = "0x2CFF1F0", VA = "0x182D001F0")]
|
||||
private AggregateException(string message, IList<Exception> innerExceptions)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600045E RID: 1118 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045E")]
|
||||
[Address(RVA = "0x2D00530", Offset = "0x2CFF530", VA = "0x182D00530")]
|
||||
internal AggregateException(IEnumerable<ExceptionDispatchInfo> innerExceptionInfos)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600045F RID: 1119 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600045F")]
|
||||
[Address(RVA = "0x2D00420", Offset = "0x2CFF420", VA = "0x182D00420")]
|
||||
internal AggregateException(string message, IEnumerable<ExceptionDispatchInfo> innerExceptionInfos)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000460 RID: 1120 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000460")]
|
||||
[Address(RVA = "0x2D00610", Offset = "0x2CFF610", VA = "0x182D00610")]
|
||||
private AggregateException(string message, IList<ExceptionDispatchInfo> innerExceptionInfos)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The object that holds the serialized object data.</param>
|
||||
/// <param name="context">The contextual information about the source or destination.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> argument is null.</exception>
|
||||
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The exception could not be deserialized correctly.</exception>
|
||||
// Token: 0x06000461 RID: 1121 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000461")]
|
||||
[Address(RVA = "0x2D00840", Offset = "0x2CFF840", VA = "0x182D00840")]
|
||||
protected AggregateException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.AggregateException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The object that holds the serialized object data.</param>
|
||||
/// <param name="context">The contextual information about the source or destination.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> argument is null.</exception>
|
||||
// Token: 0x06000462 RID: 1122 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000462")]
|
||||
[Address(RVA = "0x2CFFD60", Offset = "0x2CFED60", VA = "0x182CFFD60", Slot = "10")]
|
||||
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a read-only collection of the <see cref="T:System.Exception" /> instances that caused the current exception.</summary>
|
||||
/// <returns>A read-only collection of the <see cref="T:System.Exception" /> instances that caused the current exception.</returns>
|
||||
// Token: 0x17000084 RID: 132
|
||||
// (get) Token: 0x06000463 RID: 1123 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x17000084")]
|
||||
public ReadOnlyCollection<Exception> InnerExceptions
|
||||
{
|
||||
[Token(Token = "0x6000463")]
|
||||
[Address(RVA = "0x4C31C0", Offset = "0x4C21C0", VA = "0x1804C31C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Flattens an <see cref="T:System.AggregateException" /> instances into a single, new instance.</summary>
|
||||
/// <returns>A new, flattened <see cref="T:System.AggregateException" />.</returns>
|
||||
// Token: 0x06000464 RID: 1124 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000464")]
|
||||
[Address(RVA = "0x2CFFB90", Offset = "0x2CFEB90", VA = "0x182CFFB90")]
|
||||
public AggregateException Flatten()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Creates and returns a string representation of the current <see cref="T:System.AggregateException" />.</summary>
|
||||
/// <returns>A string representation of the current exception.</returns>
|
||||
// Token: 0x06000465 RID: 1125 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000465")]
|
||||
[Address(RVA = "0x2CFFEA0", Offset = "0x2CFEEA0", VA = "0x182CFFEA0", Slot = "3")]
|
||||
public override string ToString()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040001E0 RID: 480
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x40001E0")]
|
||||
private ReadOnlyCollection<Exception> m_innerExceptions;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user