Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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: 0x02000527 RID: 1319
[Token(Token = "0x2000527")]
[ComVisible(true)]
[CLSCompliant(false)]
[Serializable]
public class ConstructionResponse : MethodResponse, IConstructionReturnMessage, IMethodReturnMessage, IMethodMessage, IMessage
{
// Token: 0x06002B32 RID: 11058 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002B32")]
[Address(RVA = "0x2BFB2E0", Offset = "0x2BFA2E0", VA = "0x182BFB2E0")]
internal ConstructionResponse(object resultObject, LogicalCallContext callCtx, IMethodCallMessage msg)
{
}
// Token: 0x06002B33 RID: 11059 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002B33")]
[Address(RVA = "0x2BFB1B0", Offset = "0x2BFA1B0", VA = "0x182BFB1B0")]
internal ConstructionResponse(Exception e, IMethodCallMessage msg)
{
}
// Token: 0x06002B34 RID: 11060 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002B34")]
[Address(RVA = "0x2BFB250", Offset = "0x2BFA250", VA = "0x182BFB250")]
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: 0x17000652 RID: 1618
// (get) Token: 0x06002B35 RID: 11061 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000652")]
public override IDictionary Properties
{
[Token(Token = "0x6002B35")]
[Address(RVA = "0x2BFB370", Offset = "0x2BFA370", VA = "0x182BFB370", Slot = "22")]
get
{
return null;
}
}
}
}