oh dear
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user