using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides data for events that can be handled completely in an event handler.
// Token: 0x0200012C RID: 300
[Token(Token = "0x200012C")]
public class HandledEventArgs : EventArgs
{
/// Initializes a new instance of the class with a default property value of .
// Token: 0x06000784 RID: 1924 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000784")]
[Address(RVA = "0x4EDEE0", Offset = "0x4ECCE0", VA = "0x1804EDEE0")]
public HandledEventArgs()
{
}
/// Initializes a new instance of the class with the specified default value for the property.
/// The default value for the property.
// Token: 0x06000785 RID: 1925 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000785")]
[Address(RVA = "0x4EDE70", Offset = "0x4ECC70", VA = "0x1804EDE70")]
public HandledEventArgs(bool defaultHandledValue)
{
}
/// 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.
///
/// if the event has been completely handled; otherwise, .
// 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;
}
}