using System;
using System.Collections.ObjectModel;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// Store email addresses that are associated with an email message.
// Token: 0x020002B6 RID: 694
[Token(Token = "0x20002B6")]
public class MailAddressCollection : Collection
{
/// Add a list of email addresses to the collection.
/// The email addresses to add to the . Multiple email addresses must be separated with a comma character (",").
/// The parameter is null.
/// The parameter is an empty string.
/// The parameter contains an email address that is invalid or not supported.
// Token: 0x06001242 RID: 4674 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001242")]
[Address(RVA = "0x8A4890", Offset = "0x8A3890", VA = "0x1808A4890")]
public void Add(string addresses)
{
}
/// Inserts an email address into the , at the specified location.
/// The location at which to insert the email address that is specified by .
/// The email address to be inserted into the collection.
/// The parameter is null.
// 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)
{
}
/// Replaces the element at the specified index.
/// The index of the email address element to be replaced.
/// An email address that will replace the element in the collection.
/// The parameter is null.
// 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)
{
}
/// Returns a string representation of the email addresses in this object.
/// A containing the email addresses in this collection.
// 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;
}
/// Initializes an empty instance of the class.
// Token: 0x06001246 RID: 4678 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001246")]
[Address(RVA = "0x8A4C80", Offset = "0x8A3C80", VA = "0x1808A4C80")]
public MailAddressCollection()
{
}
}
}