using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Net.Mail { /// Represents the exception that is thrown when the is not able to complete a or operation to a particular recipient. // Token: 0x020002C4 RID: 708 [Token(Token = "0x20002C4")] [Serializable] public class SmtpFailedRecipientException : SmtpException, ISerializable { /// Initializes an empty instance of the class. // Token: 0x060012B8 RID: 4792 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012B8")] [Address(RVA = "0x223D550", Offset = "0x223C350", VA = "0x18223D550")] public SmtpFailedRecipientException() { } /// Initializes a new instance of the class with the specified error message. /// A that contains the error message. // Token: 0x060012B9 RID: 4793 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012B9")] [Address(RVA = "0x223D460", Offset = "0x223C260", VA = "0x18223D460")] public SmtpFailedRecipientException(string message) { } /// Initializes a new instance of the class from the specified instances of the and classes. /// A that contains the information required to serialize the new . /// A that contains the source and destination of the serialized stream that is associated with the new instance. // Token: 0x060012BA RID: 4794 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BA")] [Address(RVA = "0x223D8E0", Offset = "0x223C6E0", VA = "0x18223D8E0")] protected SmtpFailedRecipientException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class with the specified status code and email address. /// An value. /// A that contains the email address. // Token: 0x060012BB RID: 4795 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BB")] [Address(RVA = "0x223D990", Offset = "0x223C790", VA = "0x18223D990")] public SmtpFailedRecipientException(SmtpStatusCode statusCode, string failedRecipient) { } /// Populates a instance with the data that is needed to serialize the . /// The to populate with data. /// A that specifies the destination for this serialization. // Token: 0x060012BC RID: 4796 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BC")] [Address(RVA = "0x223D7A0", Offset = "0x223C5A0", VA = "0x18223D7A0", Slot = "10")] public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { } /// Populates a instance with the data that is needed to serialize the . /// A instance, which holds the serialized data for the . /// A instance that contains the destination of the serialized stream that is associated with the new . // Token: 0x060012BD RID: 4797 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60012BD")] [Address(RVA = "0x403DA0", Offset = "0x402BA0", VA = "0x180403DA0", Slot = "4")] void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { } // Token: 0x04000B10 RID: 2832 [FieldOffset(Offset = "0x90")] [Token(Token = "0x4000B10")] private string failedRecipient; } }