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

26 lines
864 B
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Adds transactional capability when adding a new item to a collection.</summary>
// Token: 0x0200012C RID: 300
[Token(Token = "0x200012C")]
public interface ICancelAddNew
{
/// <summary>Discards a pending new item from the collection.</summary>
/// <param name="itemIndex">The index of the item that was previously added to the collection.</param>
// Token: 0x0600078E RID: 1934
[Token(Token = "0x600078E")]
[Address(Slot = "0")]
void CancelNew(int itemIndex);
/// <summary>Commits a pending new item to the collection.</summary>
/// <param name="itemIndex">The index of the item that was previously added to the collection.</param>
// Token: 0x0600078F RID: 1935
[Token(Token = "0x600078F")]
[Address(Slot = "1")]
void EndNew(int itemIndex);
}
}