oh dear
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Remoting;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>Enables access to objects across application domain boundaries in applications that support remoting.</summary>
|
||||
// Token: 0x0200017F RID: 383
|
||||
[Token(Token = "0x200017F")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
[StructLayout(0)]
|
||||
public abstract class MarshalByRefObject
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.MarshalByRefObject" /> class.</summary>
|
||||
// Token: 0x06000F59 RID: 3929 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F59")]
|
||||
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
|
||||
protected MarshalByRefObject()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000173 RID: 371
|
||||
// (get) Token: 0x06000F5A RID: 3930 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x06000F5B RID: 3931 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000173")]
|
||||
internal ServerIdentity ObjectIdentity
|
||||
{
|
||||
[Token(Token = "0x6000F5A")]
|
||||
[Address(RVA = "0x25FD700", Offset = "0x25FC500", VA = "0x1825FD700")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F5B")]
|
||||
[Address(RVA = "0x25FD750", Offset = "0x25FC550", VA = "0x1825FD750")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.</summary>
|
||||
/// <param name="requestedType">The <see cref="T:System.Type" /> of the object that the new <see cref="T:System.Runtime.Remoting.ObjRef" /> will reference.</param>
|
||||
/// <returns>Information required to generate a proxy.</returns>
|
||||
/// <exception cref="T:System.Runtime.Remoting.RemotingException">This instance is not a valid remoting object.</exception>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
|
||||
// Token: 0x06000F5C RID: 3932 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000F5C")]
|
||||
[Address(RVA = "0x25FD660", Offset = "0x25FC460", VA = "0x1825FD660", Slot = "4")]
|
||||
public virtual ObjRef CreateObjRef(Type requestedType)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Obtains a lifetime service object to control the lifetime policy for this instance.</summary>
|
||||
/// <returns>An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> used to control the lifetime policy for this instance. This is the current lifetime service object for this instance if one exists; otherwise, a new lifetime service object initialized to the value of the <see cref="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseManagerPollTime" /> property.</returns>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
|
||||
// Token: 0x06000F5D RID: 3933 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000F5D")]
|
||||
[Address(RVA = "0x25FD6B0", Offset = "0x25FC4B0", VA = "0x1825FD6B0", Slot = "5")]
|
||||
public virtual object InitializeLifetimeService()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000631 RID: 1585
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000631")]
|
||||
[NonSerialized]
|
||||
private object _identity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user