55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Remoting.Activation;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Remoting.Messaging
|
|
{
|
|
/// <summary>Implements the <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" /> interface to create a message that responds to a call to instantiate a remote object.</summary>
|
|
// Token: 0x0200050B RID: 1291
|
|
[Token(Token = "0x200050B")]
|
|
[CLSCompliant(false)]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class ConstructionResponse : MethodResponse, IConstructionReturnMessage, IMethodReturnMessage, IMethodMessage, IMessage
|
|
{
|
|
// Token: 0x06002925 RID: 10533 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002925")]
|
|
[Address(RVA = "0x2374B40", Offset = "0x2373940", VA = "0x182374B40")]
|
|
internal ConstructionResponse(object resultObject, LogicalCallContext callCtx, IMethodCallMessage msg)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06002926 RID: 10534 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002926")]
|
|
[Address(RVA = "0x2374B10", Offset = "0x2373910", VA = "0x182374B10")]
|
|
internal ConstructionResponse(Exception e, IMethodCallMessage msg)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06002927 RID: 10535 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002927")]
|
|
[Address(RVA = "0x2374B20", Offset = "0x2373920", VA = "0x182374B20")]
|
|
internal ConstructionResponse(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties.</summary>
|
|
/// <returns>An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties.</returns>
|
|
// Token: 0x170005DA RID: 1498
|
|
// (get) Token: 0x06002928 RID: 10536 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170005DA")]
|
|
public override IDictionary Properties
|
|
{
|
|
[Token(Token = "0x6002928")]
|
|
[Address(RVA = "0x2374B70", Offset = "0x2373970", VA = "0x182374B70", Slot = "22")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|