m
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: 0x020004DC RID: 1244
|
||||
[Token(Token = "0x20004DC")]
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
[ComVisible(true)]
|
||||
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: 0x060029D2 RID: 10706 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029D2")]
|
||||
[Address(RVA = "0x2C08450", Offset = "0x2C07450", VA = "0x182C08450", 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: 0x060029D3 RID: 10707 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029D3")]
|
||||
[Address(RVA = "0x2C08590", Offset = "0x2C07590", VA = "0x182C08590", 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: 0x020004DE RID: 1246
|
||||
[Token(Token = "0x20004DE")]
|
||||
[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: 0x060029DB RID: 10715 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029DB")]
|
||||
[Address(RVA = "0x2C09770", Offset = "0x2C08770", VA = "0x182C09770")]
|
||||
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: 0x060029DC RID: 10716 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029DC")]
|
||||
[Address(RVA = "0x2C098F0", Offset = "0x2C088F0", VA = "0x182C098F0")]
|
||||
protected RealProxy(Type classToProxy)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029DD RID: 10717 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029DD")]
|
||||
[Address(RVA = "0x2C09880", Offset = "0x2C08880", VA = "0x182C09880")]
|
||||
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: 0x060029DE RID: 10718 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029DE")]
|
||||
[Address(RVA = "0x2C09780", Offset = "0x2C08780", VA = "0x182C09780")]
|
||||
protected RealProxy(Type classToProxy, IntPtr stub, object stubData)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029DF RID: 10719 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029DF")]
|
||||
[Address(RVA = "0x2C08A30", Offset = "0x2C07A30", VA = "0x182C08A30")]
|
||||
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: 0x060029E0 RID: 10720 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029E0")]
|
||||
[Address(RVA = "0x2C08890", Offset = "0x2C07890", VA = "0x182C08890")]
|
||||
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: 0x060029E1 RID: 10721 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029E1")]
|
||||
[Address(RVA = "0x2C087F0", Offset = "0x2C077F0", VA = "0x182C087F0", Slot = "4")]
|
||||
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170005F7 RID: 1527
|
||||
// (get) Token: 0x060029E2 RID: 10722 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x060029E3 RID: 10723 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005F7")]
|
||||
internal Identity ObjectIdentity
|
||||
{
|
||||
[Token(Token = "0x60029E2")]
|
||||
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60029E3")]
|
||||
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
|
||||
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: 0x060029E4 RID: 10724
|
||||
[Token(Token = "0x60029E4")]
|
||||
[Address(Slot = "5")]
|
||||
public abstract IMessage Invoke(IMessage msg);
|
||||
|
||||
// Token: 0x060029E5 RID: 10725 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029E5")]
|
||||
[Address(RVA = "0x2C08A50", Offset = "0x2C07A50", VA = "0x182C08A50")]
|
||||
internal static object PrivateInvoke(RealProxy rp, IMessage msg, out Exception exc, out object[] out_args)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060029E6 RID: 10726 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029E6")]
|
||||
[Address(RVA = "0x2C08A40", Offset = "0x2C07A40", VA = "0x182C08A40", 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: 0x060029E7 RID: 10727 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029E7")]
|
||||
[Address(RVA = "0x2C08920", Offset = "0x2C07920", VA = "0x182C08920", 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: 0x060029E8 RID: 10728 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029E8")]
|
||||
[Address(RVA = "0x415810", Offset = "0x414810", VA = "0x180415810")]
|
||||
protected void AttachServer(MarshalByRefObject s)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029E9 RID: 10729 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029E9")]
|
||||
[Address(RVA = "0x5AB430", Offset = "0x5AA430", VA = "0x1805AB430")]
|
||||
internal void SetTargetDomain(int domainId)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029EA RID: 10730 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029EA")]
|
||||
[Address(RVA = "0x2C086E0", Offset = "0x2C076E0", VA = "0x182C086E0")]
|
||||
internal object GetAppDomainTarget()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060029EB RID: 10731 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029EB")]
|
||||
[Address(RVA = "0x2C091F0", Offset = "0x2C081F0", VA = "0x182C091F0")]
|
||||
private static object[] ProcessResponse(IMethodReturnMessage mrm, MonoMethodMessage call)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04001826 RID: 6182
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4001826")]
|
||||
private Type class_to_proxy;
|
||||
|
||||
// Token: 0x04001827 RID: 6183
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4001827")]
|
||||
internal Context _targetContext;
|
||||
|
||||
// Token: 0x04001828 RID: 6184
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4001828")]
|
||||
internal MarshalByRefObject _server;
|
||||
|
||||
// Token: 0x04001829 RID: 6185
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4001829")]
|
||||
private int _targetDomainId;
|
||||
|
||||
// Token: 0x0400182A RID: 6186
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400182A")]
|
||||
internal string _targetUri;
|
||||
|
||||
// Token: 0x0400182B RID: 6187
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400182B")]
|
||||
internal Identity _objectIdentity;
|
||||
|
||||
// Token: 0x0400182C RID: 6188
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400182C")]
|
||||
private object _objTP;
|
||||
|
||||
// Token: 0x0400182D RID: 6189
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400182D")]
|
||||
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: 0x020004DF RID: 1247
|
||||
[Token(Token = "0x20004DF")]
|
||||
internal class RemotingProxy : RealProxy, IRemotingTypeInfo
|
||||
{
|
||||
// Token: 0x060029EC RID: 10732 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029EC")]
|
||||
[Address(RVA = "0x2C0C8E0", Offset = "0x2C0B8E0", VA = "0x182C0C8E0")]
|
||||
internal RemotingProxy(Type type, ClientIdentity identity)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029ED RID: 10733 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029ED")]
|
||||
[Address(RVA = "0x2C0C980", Offset = "0x2C0B980", VA = "0x182C0C980")]
|
||||
internal RemotingProxy(Type type, string activationUrl, object[] activationAttributes)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029EE RID: 10734 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029EE")]
|
||||
[Address(RVA = "0x2C0C310", Offset = "0x2C0B310", VA = "0x182C0C310", Slot = "5")]
|
||||
public override IMessage Invoke(IMessage request)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060029EF RID: 10735 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029EF")]
|
||||
[Address(RVA = "0x2C0BBC0", Offset = "0x2C0ABC0", VA = "0x182C0BBC0")]
|
||||
internal void AttachIdentity(Identity identity)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029F0 RID: 10736 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029F0")]
|
||||
[Address(RVA = "0x2C0B990", Offset = "0x2C0A990", VA = "0x182C0B990")]
|
||||
internal IMessage ActivateRemoteObject(IMethodMessage request)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x170005F8 RID: 1528
|
||||
// (get) Token: 0x060029F1 RID: 10737 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x170005F8")]
|
||||
public string TypeName
|
||||
{
|
||||
[Token(Token = "0x60029F1")]
|
||||
[Address(RVA = "0x2C0CA10", Offset = "0x2C0BA10", VA = "0x182C0CA10", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060029F2 RID: 10738 RVA: 0x000185A0 File Offset: 0x000167A0
|
||||
[Token(Token = "0x60029F2")]
|
||||
[Address(RVA = "0x2C0BF80", Offset = "0x2C0AF80", VA = "0x182C0BF80", Slot = "9")]
|
||||
public bool CanCastTo(Type fromType, object o)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060029F3 RID: 10739 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029F3")]
|
||||
[Address(RVA = "0x2C0C210", Offset = "0x2C0B210", VA = "0x182C0C210", Slot = "1")]
|
||||
protected override void Finalize()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400182E RID: 6190
|
||||
[Token(Token = "0x400182E")]
|
||||
private static MethodInfo _cache_GetTypeMethod;
|
||||
|
||||
// Token: 0x0400182F RID: 6191
|
||||
[Token(Token = "0x400182F")]
|
||||
private static MethodInfo _cache_GetHashCodeMethod;
|
||||
|
||||
// Token: 0x04001830 RID: 6192
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x4001830")]
|
||||
private IMessageSink _sink;
|
||||
|
||||
// Token: 0x04001831 RID: 6193
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x4001831")]
|
||||
private bool _hasEnvoySink;
|
||||
|
||||
// Token: 0x04001832 RID: 6194
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x4001832")]
|
||||
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: 0x020004DD RID: 1245
|
||||
[Token(Token = "0x20004DD")]
|
||||
[StructLayout(0)]
|
||||
internal class TransparentProxy
|
||||
{
|
||||
// Token: 0x060029D4 RID: 10708 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029D4")]
|
||||
[Address(RVA = "0x2C0ED20", Offset = "0x2C0DD20", VA = "0x182C0ED20")]
|
||||
internal RuntimeType GetProxyType()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x170005F5 RID: 1525
|
||||
// (get) Token: 0x060029D5 RID: 10709 RVA: 0x00018570 File Offset: 0x00016770
|
||||
[Token(Token = "0x170005F5")]
|
||||
private bool IsContextBoundObject
|
||||
{
|
||||
[Token(Token = "0x60029D5")]
|
||||
[Address(RVA = "0x2C0F530", Offset = "0x2C0E530", VA = "0x182C0F530")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005F6 RID: 1526
|
||||
// (get) Token: 0x060029D6 RID: 10710 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x170005F6")]
|
||||
private Context TargetContext
|
||||
{
|
||||
[Token(Token = "0x60029D6")]
|
||||
[Address(RVA = "0x423ED0", Offset = "0x422ED0", VA = "0x180423ED0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060029D7 RID: 10711 RVA: 0x00018588 File Offset: 0x00016788
|
||||
[Token(Token = "0x60029D7")]
|
||||
[Address(RVA = "0x2C0EDF0", Offset = "0x2C0DDF0", VA = "0x182C0EDF0")]
|
||||
private bool InCurrentContext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060029D8 RID: 10712 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x60029D8")]
|
||||
[Address(RVA = "0x2C0EF10", Offset = "0x2C0DF10", VA = "0x182C0EF10")]
|
||||
internal object LoadRemoteFieldNew(IntPtr classPtr, IntPtr fieldPtr)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060029D9 RID: 10713 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029D9")]
|
||||
[Address(RVA = "0x2C0F220", Offset = "0x2C0E220", VA = "0x182C0F220")]
|
||||
internal void StoreRemoteField(IntPtr classPtr, IntPtr fieldPtr, object arg)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060029DA RID: 10714 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60029DA")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public TransparentProxy()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04001823 RID: 6179
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4001823")]
|
||||
public RealProxy _rp;
|
||||
|
||||
// Token: 0x04001824 RID: 6180
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4001824")]
|
||||
private RuntimeRemoteClassHandle _class;
|
||||
|
||||
// Token: 0x04001825 RID: 6181
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4001825")]
|
||||
private bool _custom_type_info;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user