oh dear
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
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: 0x020002BA RID: 698
|
||||
[Token(Token = "0x20002BA")]
|
||||
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: 0x06001258 RID: 4696 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001258")]
|
||||
[Address(RVA = "0x222A320", Offset = "0x2229120", VA = "0x18222A320")]
|
||||
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: 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)
|
||||
{
|
||||
}
|
||||
|
||||
/// <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: 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)
|
||||
{
|
||||
}
|
||||
|
||||
/// <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: 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;
|
||||
}
|
||||
|
||||
/// <summary>Initializes an empty instance of the <see cref="T:System.Net.Mail.MailAddressCollection" /> class.</summary>
|
||||
// Token: 0x0600125C RID: 4700 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600125C")]
|
||||
[Address(RVA = "0x222A710", Offset = "0x2229510", VA = "0x18222A710")]
|
||||
public MailAddressCollection()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user