using System; using System.Runtime.InteropServices; using System.Runtime.Remoting.Messaging; using Cpp2IlInjected; namespace System.Runtime.Remoting.Contexts { /// Indicates that the implementing message sink will be provided by dynamically registered properties. // Token: 0x020004DA RID: 1242 [Token(Token = "0x20004DA")] [ComVisible(true)] public interface IDynamicMessageSink { /// Indicates that a call is returning. /// A reply message. /// A value of if the method is invoked on the client side and if it is invoked on the server side. /// A value of if this is an asynchronic call and if it is a synchronic call. // Token: 0x06002850 RID: 10320 [Token(Token = "0x6002850")] [Address(Slot = "0")] void ProcessMessageFinish(IMessage replyMsg, bool bCliSide, bool bAsync); /// Indicates that a call is starting. /// A request message. /// A value of if the method is invoked on the client side and if the method is on the server side. /// A value of if this is an asynchronic call and if it is a synchronic call. // Token: 0x06002851 RID: 10321 [Token(Token = "0x6002851")] [Address(Slot = "1")] void ProcessMessageStart(IMessage reqMsg, bool bCliSide, bool bAsync); } }