55 lines
2.0 KiB
C#
55 lines
2.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event.</summary>
|
|
// Token: 0x020000DC RID: 220
|
|
[Token(Token = "0x20000DC")]
|
|
public class AddingNewEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AddingNewEventArgs" /> class using no parameters.</summary>
|
|
// Token: 0x06000529 RID: 1321 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000529")]
|
|
[Address(RVA = "0x48FF00", Offset = "0x48ED00", VA = "0x18048FF00")]
|
|
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: 0x0600052A RID: 1322 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600052A")]
|
|
[Address(RVA = "0x48FF60", Offset = "0x48ED60", VA = "0x18048FF60")]
|
|
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: 0x170000CE RID: 206
|
|
// (get) Token: 0x0600052B RID: 1323 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x0600052C RID: 1324 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x170000CE")]
|
|
public object NewObject
|
|
{
|
|
[Token(Token = "0x600052B")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600052C")]
|
|
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x0400042F RID: 1071
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400042F")]
|
|
private object newObject;
|
|
}
|
|
}
|