This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Indicates that the implementing message sink will be provided by dynamically registered properties.</summary>
// Token: 0x020003C8 RID: 968
[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 true if the method is invoked on the client side and false if it is invoked on the server side. </param>
/// <param name="bAsync">A value of true if this is an asynchronic call and false if it is a synchronic call. </param>
// Token: 0x06002634 RID: 9780
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 true if the method is invoked on the client side and false if the method is on the server side. </param>
/// <param name="bAsync">A value of true if this is an asynchronic call and false if it is a synchronic call. </param>
// Token: 0x06002635 RID: 9781
void ProcessMessageStart(IMessage reqMsg, bool bCliSide, bool bAsync);
}
}