using System; using System.Runtime.InteropServices; using System.Runtime.Remoting.Messaging; namespace System.Runtime.Remoting { /// Provides envoy information. // Token: 0x0200043D RID: 1085 [ComVisible(true)] public interface IEnvoyInfo { /// Gets or sets the list of envoys that were contributed by the server context and object chains when the object was marshaled. /// A chain of envoy sinks. /// /// /// // Token: 0x17000847 RID: 2119 // (get) Token: 0x060029C7 RID: 10695 // (set) Token: 0x060029C8 RID: 10696 IMessageSink EnvoySinks { get; set; } } }