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
+84
View File
@@ -0,0 +1,84 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a typed weak reference, which references an object while still allowing that object to be reclaimed by garbage collection.</summary>
/// <typeparam name="T">The type of the object referenced.</typeparam>
// Token: 0x020001B9 RID: 441
[Token(Token = "0x20001B9")]
[Serializable]
public sealed class WeakReference<T> : ISerializable where T : class
{
/// <summary>Initializes a new instance of the <see cref="T:System.WeakReference`1" /> class that references the specified object.</summary>
/// <param name="target">The object to reference, or <see langword="null" />.</param>
// Token: 0x060010F8 RID: 4344 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010F8")]
[Address(RVA = "0x2F027C0", Offset = "0x2F017C0", VA = "0x182F027C0")]
public WeakReference(T target)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.WeakReference`1" /> class that references the specified object and uses the specified resurrection tracking.</summary>
/// <param name="target">The object to reference, or <see langword="null" />.</param>
/// <param name="trackResurrection">
/// <see langword="true" /> to track the object after finalization; <see langword="false" /> to track the object only until finalization.</param>
// Token: 0x060010F9 RID: 4345 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010F9")]
[Address(RVA = "0x3501C00", Offset = "0x3500C00", VA = "0x183501C00")]
public WeakReference(T target, bool trackResurrection)
{
}
// Token: 0x060010FA RID: 4346 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010FA")]
[Address(RVA = "0x3501AF0", Offset = "0x3500AF0", VA = "0x183501AF0")]
private WeakReference(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with all the data necessary to serialize the current <see cref="T:System.WeakReference`1" /> object.</summary>
/// <param name="info">An object that holds all the data necessary to serialize or deserialize the current <see cref="T:System.WeakReference`1" /> object.</param>
/// <param name="context">The location where serialized data is stored and retrieved.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x060010FB RID: 4347 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010FB")]
[Address(RVA = "0x3501930", Offset = "0x3500930", VA = "0x183501930", Slot = "4")]
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Tries to retrieve the target object that is referenced by the current <see cref="T:System.WeakReference`1" /> object.</summary>
/// <param name="target">When this method returns, contains the target object, if it is available. This parameter is treated as uninitialized.</param>
/// <returns>
/// <see langword="true" /> if the target was retrieved; otherwise, <see langword="false" />.</returns>
// Token: 0x060010FC RID: 4348 RVA: 0x0000D668 File Offset: 0x0000B868
[Token(Token = "0x60010FC")]
[Address(RVA = "0x35019F0", Offset = "0x35009F0", VA = "0x1835019F0")]
public bool TryGetTarget(out T target)
{
return default(bool);
}
/// <summary>Discards the reference to the target that is represented by the current <see cref="T:System.WeakReference`1" /> object.</summary>
// Token: 0x060010FD RID: 4349 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60010FD")]
[Address(RVA = "0x35018B0", Offset = "0x35008B0", VA = "0x1835018B0", Slot = "1")]
protected override void Finalize()
{
}
// Token: 0x040008B8 RID: 2232
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40008B8")]
private GCHandle handle;
// Token: 0x040008B9 RID: 2233
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40008B9")]
private bool trackResurrection;
}
}