Files
Apr2020-Cpp2Il-Dump/System/ComponentModel/RefreshPropertiesAttribute.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

90 lines
3.8 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Indicates that the property grid should refresh when the associated property value changes. This class cannot be inherited.</summary>
// Token: 0x020001B6 RID: 438
[Token(Token = "0x20001B6")]
[AttributeUsage(AttributeTargets.All)]
public sealed class RefreshPropertiesAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.RefreshPropertiesAttribute" /> class.</summary>
/// <param name="refresh">A <see cref="T:System.ComponentModel.RefreshProperties" /> value indicating the nature of the refresh.</param>
// Token: 0x06000BFD RID: 3069 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BFD")]
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
public RefreshPropertiesAttribute(RefreshProperties refresh)
{
}
/// <summary>Gets the refresh properties for the member.</summary>
/// <returns>A <see cref="T:System.ComponentModel.RefreshProperties" /> that indicates the current refresh properties for the member.</returns>
// Token: 0x17000231 RID: 561
// (get) Token: 0x06000BFE RID: 3070 RVA: 0x000067F8 File Offset: 0x000049F8
[Token(Token = "0x17000231")]
public RefreshProperties RefreshProperties
{
[Token(Token = "0x6000BFE")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")]
get
{
return RefreshProperties.None;
}
}
/// <summary>Overrides the object's <see cref="Overload:System.Object.Equals" /> method.</summary>
/// <param name="value">The object to test for equality.</param>
/// <returns>
/// <see langword="true" /> if the specified object is the same; otherwise, <see langword="false" />.</returns>
// Token: 0x06000BFF RID: 3071 RVA: 0x00006810 File Offset: 0x00004A10
[Token(Token = "0x6000BFF")]
[Address(RVA = "0x4D81E0", Offset = "0x4D6FE0", VA = "0x1804D81E0", Slot = "0")]
public override bool Equals(object value)
{
return default(bool);
}
/// <summary>Returns the hash code for this object.</summary>
/// <returns>The hash code for the object that the attribute belongs to.</returns>
// Token: 0x06000C00 RID: 3072 RVA: 0x00006828 File Offset: 0x00004A28
[Token(Token = "0x6000C00")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Gets a value indicating whether the current value of the attribute is the default value for the attribute.</summary>
/// <returns>
/// <see langword="true" /> if the current value of the attribute is the default; otherwise, <see langword="false" />.</returns>
// Token: 0x06000C01 RID: 3073 RVA: 0x00006840 File Offset: 0x00004A40
[Token(Token = "0x6000C01")]
[Address(RVA = "0x4D8270", Offset = "0x4D7070", VA = "0x1804D8270", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Indicates that all properties are queried again and refreshed if the property value is changed. This field is read-only.</summary>
// Token: 0x04000649 RID: 1609
[Token(Token = "0x4000649")]
public static readonly RefreshPropertiesAttribute All;
/// <summary>Indicates that all properties are repainted if the property value is changed. This field is read-only.</summary>
// Token: 0x0400064A RID: 1610
[Token(Token = "0x400064A")]
public static readonly RefreshPropertiesAttribute Repaint;
/// <summary>Indicates that no other properties are refreshed if the property value is changed. This field is read-only.</summary>
// Token: 0x0400064B RID: 1611
[Token(Token = "0x400064B")]
public static readonly RefreshPropertiesAttribute Default;
// Token: 0x0400064C RID: 1612
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400064C")]
private RefreshProperties refresh;
}
}