m
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: 0x02000128 RID: 296
|
||||
[Token(Token = "0x2000128")]
|
||||
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: 0x0600076E RID: 1902 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600076E")]
|
||||
[Address(RVA = "0xC582E0", Offset = "0xC572E0", VA = "0x180C582E0")]
|
||||
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: 0x0600076F RID: 1903 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600076F")]
|
||||
[Address(RVA = "0xC58270", Offset = "0xC57270", VA = "0x180C58270")]
|
||||
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: 0x17000159 RID: 345
|
||||
// (get) Token: 0x06000770 RID: 1904 RVA: 0x00004F80 File Offset: 0x00003180
|
||||
// (set) Token: 0x06000771 RID: 1905 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000159")]
|
||||
public bool Handled
|
||||
{
|
||||
[Token(Token = "0x6000770")]
|
||||
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6000771")]
|
||||
[Address(RVA = "0x62ADC0", Offset = "0x629DC0", VA = "0x18062ADC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040004E5 RID: 1253
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40004E5")]
|
||||
private bool handled;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user