m
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.ComponentModel
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event.</summary>
|
||||
// Token: 0x020000D8 RID: 216
|
||||
[Token(Token = "0x20000D8")]
|
||||
public class AddingNewEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AddingNewEventArgs" /> class using no parameters.</summary>
|
||||
// Token: 0x06000513 RID: 1299 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000513")]
|
||||
[Address(RVA = "0xB8D1A0", Offset = "0xB8C1A0", VA = "0x180B8D1A0")]
|
||||
public AddingNewEventArgs()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AddingNewEventArgs" /> class using the specified object as the new item.</summary>
|
||||
/// <param name="newObject">An <see cref="T:System.Object" /> to use as the new item value.</param>
|
||||
// Token: 0x06000514 RID: 1300 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000514")]
|
||||
[Address(RVA = "0xB8D200", Offset = "0xB8C200", VA = "0x180B8D200")]
|
||||
public AddingNewEventArgs(object newObject)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the object to be added to the binding list.</summary>
|
||||
/// <returns>The <see cref="T:System.Object" /> to be added as a new item to the associated collection.</returns>
|
||||
// Token: 0x170000CA RID: 202
|
||||
// (get) Token: 0x06000515 RID: 1301 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000516 RID: 1302 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170000CA")]
|
||||
public object NewObject
|
||||
{
|
||||
[Token(Token = "0x6000515")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000516")]
|
||||
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000422 RID: 1058
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000422")]
|
||||
private object newObject;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user