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,23 @@
using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Messaging
{
/// <summary>Wraps remoting data for passing between message sinks, either for requests from client to server or for the subsequent responses.</summary>
// Token: 0x020003F1 RID: 1009
[ComVisible(true)]
public class InternalMessageWrapper
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.InternalMessageWrapper" /> class. </summary>
/// <param name="msg">A message that acts either as an outgoing method call on a remote object, or as the subsequent response.</param>
// Token: 0x06002733 RID: 10035 RVA: 0x00080870 File Offset: 0x0007EA70
public InternalMessageWrapper(IMessage msg)
{
this.WrappedMessage = msg;
}
/// <summary>Represents the request or response <see cref="T:System.Runtime.Remoting.Messaging.IMethodMessage" /> interface that is wrapped by the message wrapper. </summary>
// Token: 0x04000F42 RID: 3906
protected IMessage WrappedMessage;
}
}