Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

65 lines
3.4 KiB
C#

using System;
using System.Collections.ObjectModel;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// <summary>Store email addresses that are associated with an email message.</summary>
// Token: 0x020002B6 RID: 694
[Token(Token = "0x20002B6")]
public class MailAddressCollection : Collection<MailAddress>
{
/// <summary>Add a list of email addresses to the collection.</summary>
/// <param name="addresses">The email addresses to add to the <see cref="T:System.Net.Mail.MailAddressCollection" />. Multiple email addresses must be separated with a comma character (",").</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="addresses" /> parameter is null.</exception>
/// <exception cref="T:System.ArgumentException">The <paramref name="addresses" /> parameter is an empty string.</exception>
/// <exception cref="T:System.FormatException">The <paramref name="addresses" /> parameter contains an email address that is invalid or not supported.</exception>
// Token: 0x06001242 RID: 4674 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001242")]
[Address(RVA = "0x8A4890", Offset = "0x8A3890", VA = "0x1808A4890")]
public void Add(string addresses)
{
}
/// <summary>Inserts an email address into the <see cref="T:System.Net.Mail.MailAddressCollection" />, at the specified location.</summary>
/// <param name="index">The location at which to insert the email address that is specified by <paramref name="item" />.</param>
/// <param name="item">The email address to be inserted into the collection.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
// Token: 0x06001243 RID: 4675 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001243")]
[Address(RVA = "0x8A4A60", Offset = "0x8A3A60", VA = "0x1808A4A60", Slot = "36")]
protected override void InsertItem(int index, MailAddress item)
{
}
/// <summary>Replaces the element at the specified index.</summary>
/// <param name="index">The index of the email address element to be replaced.</param>
/// <param name="item">An email address that will replace the element in the collection.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
// Token: 0x06001244 RID: 4676 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001244")]
[Address(RVA = "0x8A4AF0", Offset = "0x8A3AF0", VA = "0x1808A4AF0", Slot = "38")]
protected override void SetItem(int index, MailAddress item)
{
}
/// <summary>Returns a string representation of the email addresses in this <see cref="T:System.Net.Mail.MailAddressCollection" /> object.</summary>
/// <returns>A <see cref="T:System.String" /> containing the email addresses in this collection.</returns>
// Token: 0x06001245 RID: 4677 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001245")]
[Address(RVA = "0x8A4B80", Offset = "0x8A3B80", VA = "0x1808A4B80", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Initializes an empty instance of the <see cref="T:System.Net.Mail.MailAddressCollection" /> class.</summary>
// Token: 0x06001246 RID: 4678 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001246")]
[Address(RVA = "0x8A4C80", Offset = "0x8A3C80", VA = "0x1808A4C80")]
public MailAddressCollection()
{
}
}
}