using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Serialization { /// The exception thrown when an error occurs during serialization or deserialization. // Token: 0x02000475 RID: 1141 [Token(Token = "0x2000475")] [ComVisible(true)] [Serializable] public class SerializationException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06002724 RID: 10020 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002724")] [Address(RVA = "0x267A2F0", Offset = "0x26792F0", VA = "0x18267A2F0")] public SerializationException() { } /// Initializes a new instance of the class with a specified message. /// Indicates the reason why the exception occurred. // Token: 0x06002725 RID: 10021 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002725")] [Address(RVA = "0x267A2C0", Offset = "0x26792C0", VA = "0x18267A2C0")] public SerializationException(string message) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception. // 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) { } /// Initializes a new instance of the class from serialized data. /// The serialization information object holding the serialized object data in the name-value form. /// The contextual information about the source or destination of the exception. /// The parameter is . // 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; } }