Files
Apr2020-Cpp2Il-Dump/System/Net/Mail/SmtpFailedRecipientsException.cs
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

67 lines
4.5 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// <summary>The exception that is thrown when email is sent using an <see cref="T:System.Net.Mail.SmtpClient" /> and cannot be delivered to all recipients.</summary>
// Token: 0x020002C5 RID: 709
[Token(Token = "0x20002C5")]
[Serializable]
public class SmtpFailedRecipientsException : SmtpFailedRecipientException, ISerializable
{
/// <summary>Initializes an empty instance of the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> class.</summary>
// Token: 0x060012BE RID: 4798 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012BE")]
[Address(RVA = "0x223D550", Offset = "0x223C350", VA = "0x18223D550")]
public SmtpFailedRecipientsException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> class with the specified <see cref="T:System.String" /> and array of type <see cref="T:System.Net.Mail.SmtpFailedRecipientException" />.</summary>
/// <param name="message">The exception message.</param>
/// <param name="innerExceptions">The array of recipients with delivery errors.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance that contains the information required to serialize the new <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> instance.</param>
// 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)
{
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data that is needed to serialize the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" />.</summary>
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
/// <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to serialize the new <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" />.</param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" />.</param>
// 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;
}
}