using System; using System.Collections; using System.Runtime.InteropServices; namespace System.Runtime.Remoting.Channels { /// Provides the base interface for channel sinks. // Token: 0x020003A4 RID: 932 [ComVisible(true)] public interface IChannelSinkBase { /// Gets a dictionary through which properties on the sink can be accessed. /// A dictionary through which properties on the sink can be accessed, or null if the channel sink does not support properties. /// The immediate caller does not have infrastructure permission. /// /// /// // Token: 0x17000707 RID: 1799 // (get) Token: 0x060025AA RID: 9642 IDictionary Properties { get; } } }