23 lines
865 B
C#
23 lines
865 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Remoting.Messaging;
|
|
|
|
namespace System.Runtime.Remoting
|
|
{
|
|
/// <summary>Provides envoy information.</summary>
|
|
// Token: 0x0200043D RID: 1085
|
|
[ComVisible(true)]
|
|
public interface IEnvoyInfo
|
|
{
|
|
/// <summary>Gets or sets the list of envoys that were contributed by the server context and object chains when the object was marshaled.</summary>
|
|
/// <returns>A chain of envoy sinks.</returns>
|
|
/// <PermissionSet>
|
|
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" />
|
|
/// </PermissionSet>
|
|
// Token: 0x17000847 RID: 2119
|
|
// (get) Token: 0x060029C7 RID: 10695
|
|
// (set) Token: 0x060029C8 RID: 10696
|
|
IMessageSink EnvoySinks { get; set; }
|
|
}
|
|
}
|