using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Net.Mail { /// The exception that is thrown when email is sent using an and cannot be delivered to all recipients. // Token: 0x020002C5 RID: 709 [Token(Token = "0x20002C5")] [Serializable] public class SmtpFailedRecipientsException : SmtpFailedRecipientException, ISerializable { /// Initializes an empty instance of the class. // Token: 0x060012BE RID: 4798 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BE")] [Address(RVA = "0x223D550", Offset = "0x223C350", VA = "0x18223D550")] public SmtpFailedRecipientsException() { } /// Initializes a new instance of the class with the specified and array of type . /// The exception message. /// The array of recipients with delivery errors. // Token: 0x060012BF RID: 4799 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BF")] [Address(RVA = "0x223DB40", Offset = "0x223C940", VA = "0x18223DB40")] public SmtpFailedRecipientsException(string message, SmtpFailedRecipientException[] innerExceptions) { } /// Initializes a new instance of the class from the specified instances of the and classes. /// A instance that contains the information required to serialize the new instance. /// A that contains the source of the serialized stream that is associated with the new instance. // Token: 0x060012C0 RID: 4800 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012C0")] [Address(RVA = "0x223DBC0", Offset = "0x223C9C0", VA = "0x18223DBC0")] protected SmtpFailedRecipientsException(SerializationInfo info, StreamingContext context) { } /// Populates a instance with the data that is needed to serialize the . /// The to be used. /// The to be used. // Token: 0x060012C1 RID: 4801 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012C1")] [Address(RVA = "0x223D9C0", Offset = "0x223C7C0", VA = "0x18223D9C0", Slot = "10")] public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { } /// Initializes a new instance of the class from the specified and instances. /// A that contains the information required to serialize the new . /// A that contains the source of the serialized stream that is associated with the new . // Token: 0x060012C2 RID: 4802 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012C2")] [Address(RVA = "0x403DA0", Offset = "0x402BA0", VA = "0x180403DA0", Slot = "4")] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x04000B11 RID: 2833 [FieldOffset(Offset = "0x98")] [Token(Token = "0x4000B11")] private SmtpFailedRecipientException[] innerExceptions; } }