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: 0x020002C0 RID: 704
[Token(Token = "0x20002C0")]
[Serializable]
public class SmtpFailedRecipientException : SmtpException, ISerializable
{
/// Initializes an empty instance of the class.
// Token: 0x060012A2 RID: 4770 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A2")]
[Address(RVA = "0x8B8120", Offset = "0x8B7120", VA = "0x1808B8120")]
public SmtpFailedRecipientException()
{
}
/// Initializes a new instance of the class with the specified error message.
/// A that contains the error message.
// Token: 0x060012A3 RID: 4771 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A3")]
[Address(RVA = "0x8B8030", Offset = "0x8B7030", VA = "0x1808B8030")]
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: 0x060012A4 RID: 4772 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A4")]
[Address(RVA = "0x8B84B0", Offset = "0x8B74B0", VA = "0x1808B84B0")]
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: 0x060012A5 RID: 4773 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A5")]
[Address(RVA = "0x8B8560", Offset = "0x8B7560", VA = "0x1808B8560")]
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: 0x060012A6 RID: 4774 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A6")]
[Address(RVA = "0x8B8370", Offset = "0x8B7370", VA = "0x1808B8370", 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: 0x060012A7 RID: 4775 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A7")]
[Address(RVA = "0x7754F0", Offset = "0x7744F0", VA = "0x1807754F0", Slot = "4")]
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
// Token: 0x04000B03 RID: 2819
[FieldOffset(Offset = "0x90")]
[Token(Token = "0x4000B03")]
private string failedRecipient;
}
}