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: 0x020002C1 RID: 705 [Token(Token = "0x20002C1")] [Serializable] public class SmtpFailedRecipientsException : SmtpFailedRecipientException, ISerializable { /// Initializes an empty instance of the class. // Token: 0x060012A8 RID: 4776 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012A8")] [Address(RVA = "0x8B8120", Offset = "0x8B7120", VA = "0x1808B8120")] 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: 0x060012A9 RID: 4777 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012A9")] [Address(RVA = "0x8B8710", Offset = "0x8B7710", VA = "0x1808B8710")] 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: 0x060012AA RID: 4778 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012AA")] [Address(RVA = "0x8B8790", Offset = "0x8B7790", VA = "0x1808B8790")] 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: 0x060012AB RID: 4779 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012AB")] [Address(RVA = "0x8B8590", Offset = "0x8B7590", VA = "0x1808B8590", 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: 0x060012AC RID: 4780 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012AC")] [Address(RVA = "0x7754F0", Offset = "0x7744F0", VA = "0x1807754F0", Slot = "4")] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x04000B04 RID: 2820 [FieldOffset(Offset = "0x98")] [Token(Token = "0x4000B04")] private SmtpFailedRecipientException[] innerExceptions; } }