Files
27Aug2021-Cpp2IL-Dump/System/Net/Mail/SmtpFailedRecipientsException.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020002C1 RID: 705
[Token(Token = "0x20002C1")]
[Serializable]
public class SmtpFailedRecipientsException : SmtpFailedRecipientException, ISerializable
{
/// <summary>Initializes an empty instance of the <see cref="T:System.Net.Mail.SmtpFailedRecipientsException" /> class.</summary>
// Token: 0x060012A8 RID: 4776 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A8")]
[Address(RVA = "0x8B8120", Offset = "0x8B7120", VA = "0x1808B8120")]
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: 0x060012A9 RID: 4777 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012A9")]
[Address(RVA = "0x8B8710", Offset = "0x8B7710", VA = "0x1808B8710")]
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: 0x060012AA RID: 4778 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60012AA")]
[Address(RVA = "0x8B8790", Offset = "0x8B7790", VA = "0x1808B8790")]
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: 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)
{
}
/// <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: 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;
}
}