This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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: 0x02000317 RID: 791
[Token(Token = "0x2000317")]
public struct AsyncLocalValueChangedArgs<T>
{
/// <summary>Gets the data's previous value.</summary>
/// <returns>The data's previous value.</returns>
// Token: 0x170003EE RID: 1006
// (get) Token: 0x06001D0F RID: 7439 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06001D10 RID: 7440 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170003EE")]
public T PreviousValue
{
[Token(Token = "0x6001D0F")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001D10")]
[Address(RVA = "0x461A30", Offset = "0x460830", VA = "0x180461A30")]
[CompilerGenerated]
private set
{
}
}
/// <summary>Gets the data's current value.</summary>
/// <returns>The data's current value.</returns>
// Token: 0x170003EF RID: 1007
// (get) Token: 0x06001D11 RID: 7441 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06001D12 RID: 7442 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170003EF")]
public T CurrentValue
{
[Token(Token = "0x6001D11")]
[Address(RVA = "0x57C630", Offset = "0x57B430", VA = "0x18057C630")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001D12")]
[Address(RVA = "0x737860", Offset = "0x736660", VA = "0x180737860")]
[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: 0x170003F0 RID: 1008
// (set) Token: 0x06001D13 RID: 7443 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170003F0")]
private bool ThreadContextChanged
{
[Token(Token = "0x6001D13")]
[Address(RVA = "0x495D50", Offset = "0x494B50", VA = "0x180495D50")]
[CompilerGenerated]
set
{
}
}
// Token: 0x06001D14 RID: 7444 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D14")]
[Address(RVA = "0x28E59C0", Offset = "0x28E47C0", VA = "0x1828E59C0")]
internal AsyncLocalValueChangedArgs(T previousValue, T currentValue, bool contextChanged)
{
}
}
}