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,22 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Serialization
{
/// <summary>Indicates that the current interface implementer is a reference to another object.</summary>
// Token: 0x0200045C RID: 1116
[Token(Token = "0x200045C")]
[ComVisible(true)]
public interface IObjectReference
{
/// <summary>Returns the real object that should be deserialized, rather than the object that the serialized stream specifies.</summary>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> from which the current object is deserialized.</param>
/// <returns>The actual object that is put into the graph.</returns>
/// <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. The call will not work on a medium trusted server.</exception>
// Token: 0x06002699 RID: 9881
[Token(Token = "0x6002699")]
[Address(Slot = "0")]
object GetRealObject(StreamingContext context);
}
}