oh dear
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Remoting.Contexts;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Remoting.Proxies
|
||||
{
|
||||
/// <summary>Indicates that an object type requires a custom proxy.</summary>
|
||||
// Token: 0x020004C0 RID: 1216
|
||||
[Token(Token = "0x20004C0")]
|
||||
[ComVisible(true)]
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class ProxyAttribute : Attribute
|
||||
{
|
||||
/// <summary>Creates either an uninitialized <see cref="T:System.MarshalByRefObject" /> or a transparent proxy, depending on whether the specified type can exist in the current context.</summary>
|
||||
/// <param name="serverType">The object type to create an instance of.</param>
|
||||
/// <returns>An uninitialized <see cref="T:System.MarshalByRefObject" /> or a transparent proxy.</returns>
|
||||
// Token: 0x060027C5 RID: 10181 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027C5")]
|
||||
[Address(RVA = "0x25BF820", Offset = "0x25BE620", VA = "0x1825BF820", Slot = "7")]
|
||||
public virtual MarshalByRefObject CreateInstance(Type serverType)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Creates an instance of a remoting proxy for a remote object described by the specified <see cref="T:System.Runtime.Remoting.ObjRef" />, and located on the server.</summary>
|
||||
/// <param name="objRef">The object reference to the remote object for which to create a proxy.</param>
|
||||
/// <param name="serverType">The type of the server where the remote object is located.</param>
|
||||
/// <param name="serverObject">The server object.</param>
|
||||
/// <param name="serverContext">The context in which the server object is located.</param>
|
||||
/// <returns>The new instance of remoting proxy for the remote object that is described in the specified <see cref="T:System.Runtime.Remoting.ObjRef" />.</returns>
|
||||
// Token: 0x060027C6 RID: 10182 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027C6")]
|
||||
[Address(RVA = "0x25BF930", Offset = "0x25BE730", VA = "0x1825BF930", Slot = "8")]
|
||||
public virtual RealProxy CreateProxy(ObjRef objRef, Type serverType, object serverObject, Context serverContext)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Remoting.Contexts;
|
||||
using System.Runtime.Remoting.Messaging;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Remoting.Proxies
|
||||
{
|
||||
/// <summary>Provides base functionality for proxies.</summary>
|
||||
// Token: 0x020004C2 RID: 1218
|
||||
[Token(Token = "0x20004C2")]
|
||||
[ComVisible(true)]
|
||||
[StructLayout(0)]
|
||||
public abstract class RealProxy
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class with default values.</summary>
|
||||
// Token: 0x060027CE RID: 10190 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027CE")]
|
||||
[Address(RVA = "0x25C09C0", Offset = "0x25BF7C0", VA = "0x1825C09C0")]
|
||||
protected RealProxy()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class that represents a remote object of the specified <see cref="T:System.Type" />.</summary>
|
||||
/// <param name="classToProxy">The <see cref="T:System.Type" /> of the remote object for which to create a proxy.</param>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="classToProxy" /> is not an interface, and is not derived from <see cref="T:System.MarshalByRefObject" />.</exception>
|
||||
// Token: 0x060027CF RID: 10191 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027CF")]
|
||||
[Address(RVA = "0x25C0B40", Offset = "0x25BF940", VA = "0x1825C0B40")]
|
||||
protected RealProxy(Type classToProxy)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027D0 RID: 10192 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027D0")]
|
||||
[Address(RVA = "0x25C0AD0", Offset = "0x25BF8D0", VA = "0x1825C0AD0")]
|
||||
internal RealProxy(Type classToProxy, ClientIdentity identity)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class.</summary>
|
||||
/// <param name="classToProxy">The <see cref="T:System.Type" /> of the remote object for which to create a proxy.</param>
|
||||
/// <param name="stub">A stub to associate with the new proxy instance.</param>
|
||||
/// <param name="stubData">The stub data to set for the specified stub and the new proxy instance.</param>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="classToProxy" /> is not an interface, and is not derived from <see cref="T:System.MarshalByRefObject" />.</exception>
|
||||
// Token: 0x060027D1 RID: 10193 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027D1")]
|
||||
[Address(RVA = "0x25C09D0", Offset = "0x25BF7D0", VA = "0x1825C09D0")]
|
||||
protected RealProxy(Type classToProxy, IntPtr stub, object stubData)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027D2 RID: 10194 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027D2")]
|
||||
[Address(RVA = "0x25BFCE0", Offset = "0x25BEAE0", VA = "0x1825BFCE0")]
|
||||
private static Type InternalGetProxyType(object transparentProxy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the <see cref="T:System.Type" /> of the object that the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> represents.</summary>
|
||||
/// <returns>The <see cref="T:System.Type" /> of the object that the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> represents.</returns>
|
||||
// Token: 0x060027D3 RID: 10195 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027D3")]
|
||||
[Address(RVA = "0x25BFB40", Offset = "0x25BE940", VA = "0x1825BFB40")]
|
||||
public Type GetProxiedType()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Adds the transparent proxy of the object represented by the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> to the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> into which the transparent proxy is serialized.</param>
|
||||
/// <param name="context">The source and destination of the serialization.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> or <paramref name="context" /> parameter is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have SerializationFormatter permission.</exception>
|
||||
// Token: 0x060027D4 RID: 10196 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027D4")]
|
||||
[Address(RVA = "0x25BFAB0", Offset = "0x25BE8B0", VA = "0x1825BFAB0", Slot = "4")]
|
||||
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700057F RID: 1407
|
||||
// (get) Token: 0x060027D5 RID: 10197 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x060027D6 RID: 10198 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700057F")]
|
||||
internal Identity ObjectIdentity
|
||||
{
|
||||
[Token(Token = "0x60027D5")]
|
||||
[Address(RVA = "0x3F63D0", Offset = "0x3F51D0", VA = "0x1803F63D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60027D6")]
|
||||
[Address(RVA = "0x5329E0", Offset = "0x5317E0", VA = "0x1805329E0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>When overridden in a derived class, invokes the method that is specified in the provided <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> on the remote object that is represented by the current instance.</summary>
|
||||
/// <param name="msg">A <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that contains a <see cref="T:System.Collections.IDictionary" /> of information about the method call.</param>
|
||||
/// <returns>The message returned by the invoked method, containing the return value and any <see langword="out" /> or <see langword="ref" /> parameters.</returns>
|
||||
// Token: 0x060027D7 RID: 10199
|
||||
[Token(Token = "0x60027D7")]
|
||||
[Address(Slot = "5")]
|
||||
public abstract IMessage Invoke(IMessage msg);
|
||||
|
||||
// Token: 0x060027D8 RID: 10200 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027D8")]
|
||||
[Address(RVA = "0x25BFD00", Offset = "0x25BEB00", VA = "0x1825BFD00")]
|
||||
internal static object PrivateInvoke(RealProxy rp, IMessage msg, out Exception exc, out object[] out_args)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060027D9 RID: 10201 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027D9")]
|
||||
[Address(RVA = "0x25BFCF0", Offset = "0x25BEAF0", VA = "0x1825BFCF0", Slot = "6")]
|
||||
internal virtual object InternalGetTransparentProxy(string className)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the transparent proxy for the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" />.</summary>
|
||||
/// <returns>The transparent proxy for the current proxy instance.</returns>
|
||||
// Token: 0x060027DA RID: 10202 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027DA")]
|
||||
[Address(RVA = "0x25BFBD0", Offset = "0x25BE9D0", VA = "0x1825BFBD0", Slot = "7")]
|
||||
public virtual object GetTransparentProxy()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Attaches the current proxy instance to the specified remote <see cref="T:System.MarshalByRefObject" />.</summary>
|
||||
/// <param name="s">The <see cref="T:System.MarshalByRefObject" /> that the current proxy instance represents.</param>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have UnmanagedCode permission.</exception>
|
||||
// Token: 0x060027DB RID: 10203 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027DB")]
|
||||
[Address(RVA = "0x460F90", Offset = "0x45FD90", VA = "0x180460F90")]
|
||||
protected void AttachServer(MarshalByRefObject s)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027DC RID: 10204 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027DC")]
|
||||
[Address(RVA = "0x42EFF0", Offset = "0x42DDF0", VA = "0x18042EFF0")]
|
||||
internal void SetTargetDomain(int domainId)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027DD RID: 10205 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027DD")]
|
||||
[Address(RVA = "0x25BF9A0", Offset = "0x25BE7A0", VA = "0x1825BF9A0")]
|
||||
internal object GetAppDomainTarget()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060027DE RID: 10206 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027DE")]
|
||||
[Address(RVA = "0x25C0440", Offset = "0x25BF240", VA = "0x1825C0440")]
|
||||
private static object[] ProcessResponse(IMethodReturnMessage mrm, MonoMethodMessage call)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04001763 RID: 5987
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4001763")]
|
||||
private Type class_to_proxy;
|
||||
|
||||
// Token: 0x04001764 RID: 5988
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4001764")]
|
||||
internal Context _targetContext;
|
||||
|
||||
// Token: 0x04001765 RID: 5989
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4001765")]
|
||||
internal MarshalByRefObject _server;
|
||||
|
||||
// Token: 0x04001766 RID: 5990
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4001766")]
|
||||
private int _targetDomainId;
|
||||
|
||||
// Token: 0x04001767 RID: 5991
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4001767")]
|
||||
internal string _targetUri;
|
||||
|
||||
// Token: 0x04001768 RID: 5992
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4001768")]
|
||||
internal Identity _objectIdentity;
|
||||
|
||||
// Token: 0x04001769 RID: 5993
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4001769")]
|
||||
private object _objTP;
|
||||
|
||||
// Token: 0x0400176A RID: 5994
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400176A")]
|
||||
private object _stubData;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.Remoting.Messaging;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Remoting.Proxies
|
||||
{
|
||||
// Token: 0x020004C3 RID: 1219
|
||||
[Token(Token = "0x20004C3")]
|
||||
internal class RemotingProxy : RealProxy, IRemotingTypeInfo
|
||||
{
|
||||
// Token: 0x060027DF RID: 10207 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027DF")]
|
||||
[Address(RVA = "0x25C3920", Offset = "0x25C2720", VA = "0x1825C3920")]
|
||||
internal RemotingProxy(Type type, ClientIdentity identity)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027E0 RID: 10208 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027E0")]
|
||||
[Address(RVA = "0x25C39B0", Offset = "0x25C27B0", VA = "0x1825C39B0")]
|
||||
internal RemotingProxy(Type type, string activationUrl, object[] activationAttributes)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027E1 RID: 10209 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027E1")]
|
||||
[Address(RVA = "0x25C3460", Offset = "0x25C2260", VA = "0x1825C3460", Slot = "5")]
|
||||
public override IMessage Invoke(IMessage request)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060027E2 RID: 10210 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027E2")]
|
||||
[Address(RVA = "0x25C2D60", Offset = "0x25C1B60", VA = "0x1825C2D60")]
|
||||
internal void AttachIdentity(Identity identity)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027E3 RID: 10211 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027E3")]
|
||||
[Address(RVA = "0x25C2B80", Offset = "0x25C1980", VA = "0x1825C2B80")]
|
||||
internal IMessage ActivateRemoteObject(IMethodMessage request)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000580 RID: 1408
|
||||
// (get) Token: 0x060027E4 RID: 10212 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x17000580")]
|
||||
public string TypeName
|
||||
{
|
||||
[Token(Token = "0x60027E4")]
|
||||
[Address(RVA = "0x25C3A40", Offset = "0x25C2840", VA = "0x1825C3A40", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060027E5 RID: 10213 RVA: 0x000161D0 File Offset: 0x000143D0
|
||||
[Token(Token = "0x60027E5")]
|
||||
[Address(RVA = "0x25C30D0", Offset = "0x25C1ED0", VA = "0x1825C30D0", Slot = "9")]
|
||||
public bool CanCastTo(Type fromType, object o)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060027E6 RID: 10214 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027E6")]
|
||||
[Address(RVA = "0x25C3360", Offset = "0x25C2160", VA = "0x1825C3360", Slot = "1")]
|
||||
protected override void Finalize()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400176B RID: 5995
|
||||
[Token(Token = "0x400176B")]
|
||||
private static MethodInfo _cache_GetTypeMethod;
|
||||
|
||||
// Token: 0x0400176C RID: 5996
|
||||
[Token(Token = "0x400176C")]
|
||||
private static MethodInfo _cache_GetHashCodeMethod;
|
||||
|
||||
// Token: 0x0400176D RID: 5997
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400176D")]
|
||||
private IMessageSink _sink;
|
||||
|
||||
// Token: 0x0400176E RID: 5998
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x400176E")]
|
||||
private bool _hasEnvoySink;
|
||||
|
||||
// Token: 0x0400176F RID: 5999
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x400176F")]
|
||||
private ConstructionCall _ctorCall;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Remoting.Contexts;
|
||||
using Cpp2IlInjected;
|
||||
using Mono;
|
||||
|
||||
namespace System.Runtime.Remoting.Proxies
|
||||
{
|
||||
// Token: 0x020004C1 RID: 1217
|
||||
[Token(Token = "0x20004C1")]
|
||||
[StructLayout(0)]
|
||||
internal class TransparentProxy
|
||||
{
|
||||
// Token: 0x060027C7 RID: 10183 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027C7")]
|
||||
[Address(RVA = "0x25CBF10", Offset = "0x25CAD10", VA = "0x1825CBF10")]
|
||||
internal RuntimeType GetProxyType()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x1700057D RID: 1405
|
||||
// (get) Token: 0x060027C8 RID: 10184 RVA: 0x000161A0 File Offset: 0x000143A0
|
||||
[Token(Token = "0x1700057D")]
|
||||
private bool IsContextBoundObject
|
||||
{
|
||||
[Token(Token = "0x60027C8")]
|
||||
[Address(RVA = "0x25CC720", Offset = "0x25CB520", VA = "0x1825CC720")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700057E RID: 1406
|
||||
// (get) Token: 0x060027C9 RID: 10185 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x1700057E")]
|
||||
private Context TargetContext
|
||||
{
|
||||
[Token(Token = "0x60027C9")]
|
||||
[Address(RVA = "0x434BE0", Offset = "0x4339E0", VA = "0x180434BE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060027CA RID: 10186 RVA: 0x000161B8 File Offset: 0x000143B8
|
||||
[Token(Token = "0x60027CA")]
|
||||
[Address(RVA = "0x25CBFE0", Offset = "0x25CADE0", VA = "0x1825CBFE0")]
|
||||
private bool InCurrentContext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060027CB RID: 10187 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60027CB")]
|
||||
[Address(RVA = "0x25CC100", Offset = "0x25CAF00", VA = "0x1825CC100")]
|
||||
internal object LoadRemoteFieldNew(IntPtr classPtr, IntPtr fieldPtr)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060027CC RID: 10188 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027CC")]
|
||||
[Address(RVA = "0x25CC410", Offset = "0x25CB210", VA = "0x1825CC410")]
|
||||
internal void StoreRemoteField(IntPtr classPtr, IntPtr fieldPtr, object arg)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060027CD RID: 10189 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60027CD")]
|
||||
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
|
||||
public TransparentProxy()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04001760 RID: 5984
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4001760")]
|
||||
public RealProxy _rp;
|
||||
|
||||
// Token: 0x04001761 RID: 5985
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4001761")]
|
||||
private RuntimeRemoteClassHandle _class;
|
||||
|
||||
// Token: 0x04001762 RID: 5986
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4001762")]
|
||||
private bool _custom_type_info;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user