m
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: 0x02000186 RID: 390
|
||||
[Token(Token = "0x2000186")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
[StructLayout(0)]
|
||||
public abstract class MarshalByRefObject
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.MarshalByRefObject" /> class.</summary>
|
||||
// Token: 0x06000F8F RID: 3983 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F8F")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
|
||||
protected MarshalByRefObject()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700017A RID: 378
|
||||
// (get) Token: 0x06000F90 RID: 3984 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x06000F91 RID: 3985 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700017A")]
|
||||
internal ServerIdentity ObjectIdentity
|
||||
{
|
||||
[Token(Token = "0x6000F90")]
|
||||
[Address(RVA = "0x2D695C0", Offset = "0x2D685C0", VA = "0x182D695C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F91")]
|
||||
[Address(RVA = "0x2D69610", Offset = "0x2D68610", VA = "0x182D69610")]
|
||||
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: 0x06000F92 RID: 3986 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000F92")]
|
||||
[Address(RVA = "0x2D69520", Offset = "0x2D68520", VA = "0x182D69520", 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: 0x06000F93 RID: 3987 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000F93")]
|
||||
[Address(RVA = "0x2D69570", Offset = "0x2D68570", VA = "0x182D69570", Slot = "5")]
|
||||
public virtual object InitializeLifetimeService()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0400063B RID: 1595
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400063B")]
|
||||
[NonSerialized]
|
||||
private object _identity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user