m
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Serialization
|
||||
{
|
||||
/// <summary>The exception thrown when an error occurs during serialization or deserialization.</summary>
|
||||
// Token: 0x02000475 RID: 1141
|
||||
[Token(Token = "0x2000475")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class SerializationException : SystemException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with default properties.</summary>
|
||||
// Token: 0x06002724 RID: 10020 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002724")]
|
||||
[Address(RVA = "0x267A2F0", Offset = "0x26792F0", VA = "0x18267A2F0")]
|
||||
public SerializationException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with a specified message.</summary>
|
||||
/// <param name="message">Indicates the reason why the exception occurred.</param>
|
||||
// Token: 0x06002725 RID: 10021 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002725")]
|
||||
[Address(RVA = "0x267A2C0", Offset = "0x26792C0", VA = "0x18267A2C0")]
|
||||
public SerializationException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
|
||||
// Token: 0x06002726 RID: 10022 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002726")]
|
||||
[Address(RVA = "0x267A370", Offset = "0x2679370", VA = "0x18267A370")]
|
||||
public SerializationException(string message, Exception innerException)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class from serialized data.</summary>
|
||||
/// <param name="info">The serialization information object holding the serialized object data in the name-value form.</param>
|
||||
/// <param name="context">The contextual information about the source or destination of the exception.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
|
||||
// Token: 0x06002727 RID: 10023 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002727")]
|
||||
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
||||
protected SerializationException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04001592 RID: 5522
|
||||
[Token(Token = "0x4001592")]
|
||||
private static string _nullMessage;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user