33 lines
1.6 KiB
C#
33 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Remoting.Messaging;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Remoting.Contexts
|
|
{
|
|
/// <summary>Indicates that the implementing message sink will be provided by dynamically registered properties.</summary>
|
|
// Token: 0x020004F6 RID: 1270
|
|
[Token(Token = "0x20004F6")]
|
|
[ComVisible(true)]
|
|
public interface IDynamicMessageSink
|
|
{
|
|
/// <summary>Indicates that a call is returning.</summary>
|
|
/// <param name="replyMsg">A reply message.</param>
|
|
/// <param name="bCliSide">A value of <see langword="true" /> if the method is invoked on the client side and <see langword="false" /> if it is invoked on the server side.</param>
|
|
/// <param name="bAsync">A value of <see langword="true" /> if this is an asynchronic call and <see langword="false" /> if it is a synchronic call.</param>
|
|
// Token: 0x06002A5D RID: 10845
|
|
[Token(Token = "0x6002A5D")]
|
|
[Address(Slot = "0")]
|
|
void ProcessMessageFinish(IMessage replyMsg, bool bCliSide, bool bAsync);
|
|
|
|
/// <summary>Indicates that a call is starting.</summary>
|
|
/// <param name="reqMsg">A request message.</param>
|
|
/// <param name="bCliSide">A value of <see langword="true" /> if the method is invoked on the client side and <see langword="false" /> if the method is on the server side.</param>
|
|
/// <param name="bAsync">A value of <see langword="true" /> if this is an asynchronic call and <see langword="false" /> if it is a synchronic call.</param>
|
|
// Token: 0x06002A5E RID: 10846
|
|
[Token(Token = "0x6002A5E")]
|
|
[Address(Slot = "1")]
|
|
void ProcessMessageStart(IMessage reqMsg, bool bCliSide, bool bAsync);
|
|
}
|
|
}
|