This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,82 @@
using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The class that provides data change information to <see cref="T:System.Threading.AsyncLocal`1" /> instances that register for change notifications.</summary>
/// <typeparam name="T">The type of the data.</typeparam>
// Token: 0x02000331 RID: 817
[Token(Token = "0x2000331")]
public struct AsyncLocalValueChangedArgs<T>
{
/// <summary>Gets the data's previous value.</summary>
/// <returns>The data's previous value.</returns>
// Token: 0x17000464 RID: 1124
// (get) Token: 0x06001F10 RID: 7952 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06001F11 RID: 7953 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000464")]
public T PreviousValue
{
[Token(Token = "0x6001F10")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001F11")]
[Address(RVA = "0x593200", Offset = "0x592200", VA = "0x180593200")]
[CompilerGenerated]
private set
{
}
}
/// <summary>Gets the data's current value.</summary>
/// <returns>The data's current value.</returns>
// Token: 0x17000465 RID: 1125
// (get) Token: 0x06001F12 RID: 7954 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06001F13 RID: 7955 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000465")]
public T CurrentValue
{
[Token(Token = "0x6001F12")]
[Address(RVA = "0x634760", Offset = "0x633760", VA = "0x180634760")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001F13")]
[Address(RVA = "0x6347B0", Offset = "0x6337B0", VA = "0x1806347B0")]
[CompilerGenerated]
private set
{
}
}
/// <summary>Returns a value that indicates whether the value changes because of a change of execution context.</summary>
/// <returns>
/// <see langword="true" /> if the value changed because of a change of execution context; otherwise, <see langword="false" />.</returns>
// Token: 0x17000466 RID: 1126
// (set) Token: 0x06001F14 RID: 7956 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000466")]
private bool ThreadContextChanged
{
[Token(Token = "0x6001F14")]
[Address(RVA = "0x62ADC0", Offset = "0x629DC0", VA = "0x18062ADC0")]
[CompilerGenerated]
set
{
}
}
// Token: 0x06001F15 RID: 7957 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F15")]
[Address(RVA = "0x2EFB6E0", Offset = "0x2EFA6E0", VA = "0x182EFB6E0")]
internal AsyncLocalValueChangedArgs(T previousValue, T currentValue, bool contextChanged)
{
}
}
}