This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Adds transactional capability when adding a new item to a collection.</summary>
// Token: 0x02000130 RID: 304
[Token(Token = "0x2000130")]
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: 0x060007A4 RID: 1956
[Token(Token = "0x60007A4")]
[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: 0x060007A5 RID: 1957
[Token(Token = "0x60007A5")]
[Address(Slot = "1")]
void EndNew(int itemIndex);
}
}