scripts
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace System.Net.Mail
|
||||
{
|
||||
/// <summary>Represents a collection of <see cref="T:System.Net.Mail.AlternateView" /> objects.</summary>
|
||||
// Token: 0x02000136 RID: 310
|
||||
public sealed class AlternateViewCollection : Collection<AlternateView>, IDisposable
|
||||
{
|
||||
// Token: 0x06000A8F RID: 2703 RVA: 0x0001DCA0 File Offset: 0x0001BEA0
|
||||
internal AlternateViewCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Releases all resources used by the <see cref="T:System.Net.Mail.AlternateViewCollection" />.</summary>
|
||||
// Token: 0x06000A90 RID: 2704 RVA: 0x0001DCA8 File Offset: 0x0001BEA8
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000A91 RID: 2705 RVA: 0x0001DCAC File Offset: 0x0001BEAC
|
||||
protected override void ClearItems()
|
||||
{
|
||||
base.ClearItems();
|
||||
}
|
||||
|
||||
// Token: 0x06000A92 RID: 2706 RVA: 0x0001DCB4 File Offset: 0x0001BEB4
|
||||
protected override void InsertItem(int index, AlternateView item)
|
||||
{
|
||||
base.InsertItem(index, item);
|
||||
}
|
||||
|
||||
// Token: 0x06000A93 RID: 2707 RVA: 0x0001DCC0 File Offset: 0x0001BEC0
|
||||
protected override void RemoveItem(int index)
|
||||
{
|
||||
base.RemoveItem(index);
|
||||
}
|
||||
|
||||
// Token: 0x06000A94 RID: 2708 RVA: 0x0001DCCC File Offset: 0x0001BECC
|
||||
protected override void SetItem(int index, AlternateView item)
|
||||
{
|
||||
base.SetItem(index, item);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user