24 lines
1.0 KiB
C#
24 lines
1.0 KiB
C#
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;
|
|
}
|
|
}
|