oh dear
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.ComponentModel
|
||||
{
|
||||
/// <summary>Provides data for events that can be handled completely in an event handler.</summary>
|
||||
// Token: 0x0200012C RID: 300
|
||||
[Token(Token = "0x200012C")]
|
||||
public class HandledEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.HandledEventArgs" /> class with a default <see cref="P:System.ComponentModel.HandledEventArgs.Handled" /> property value of <see langword="false" />.</summary>
|
||||
// Token: 0x06000784 RID: 1924 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000784")]
|
||||
[Address(RVA = "0x4EDEE0", Offset = "0x4ECCE0", VA = "0x1804EDEE0")]
|
||||
public HandledEventArgs()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.HandledEventArgs" /> class with the specified default value for the <see cref="P:System.ComponentModel.HandledEventArgs.Handled" /> property.</summary>
|
||||
/// <param name="defaultHandledValue">The default value for the <see cref="P:System.ComponentModel.HandledEventArgs.Handled" /> property.</param>
|
||||
// Token: 0x06000785 RID: 1925 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000785")]
|
||||
[Address(RVA = "0x4EDE70", Offset = "0x4ECC70", VA = "0x1804EDE70")]
|
||||
public HandledEventArgs(bool defaultHandledValue)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the event has been completely handled; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700015D RID: 349
|
||||
// (get) Token: 0x06000786 RID: 1926 RVA: 0x00004F98 File Offset: 0x00003198
|
||||
// (set) Token: 0x06000787 RID: 1927 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700015D")]
|
||||
public bool Handled
|
||||
{
|
||||
[Token(Token = "0x6000786")]
|
||||
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6000787")]
|
||||
[Address(RVA = "0x495D50", Offset = "0x494B50", VA = "0x180495D50")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040004F2 RID: 1266
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40004F2")]
|
||||
private bool handled;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user