using System; using System.Collections.ObjectModel; using Cpp2IlInjected; namespace System.Net.Mail { /// Store email addresses that are associated with an email message. // Token: 0x020002BA RID: 698 [Token(Token = "0x20002BA")] 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: 0x06001258 RID: 4696 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001258")] [Address(RVA = "0x222A320", Offset = "0x2229120", VA = "0x18222A320")] 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: 0x06001259 RID: 4697 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001259")] [Address(RVA = "0x222A4F0", Offset = "0x22292F0", VA = "0x18222A4F0", 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: 0x0600125A RID: 4698 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600125A")] [Address(RVA = "0x222A580", Offset = "0x2229380", VA = "0x18222A580", 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: 0x0600125B RID: 4699 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600125B")] [Address(RVA = "0x222A610", Offset = "0x2229410", VA = "0x18222A610", Slot = "3")] public override string ToString() { return null; } /// Initializes an empty instance of the class. // Token: 0x0600125C RID: 4700 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600125C")] [Address(RVA = "0x222A710", Offset = "0x2229510", VA = "0x18222A710")] public MailAddressCollection() { } } }