mscorlib(4.0.0.0) API with additions
IChannelSender.cs
3 using System.Security;
4 
6 {
8  [ComVisible(true)]
9  public interface IChannelSender : IChannel
10  {
17  [SecurityCritical]
18  IMessageSink CreateMessageSink(string url, object remoteChannelData, out string objectURI);
19  }
20 }
Definition: __Canon.cs:3
IMessageSink CreateMessageSink(string url, object remoteChannelData, out string objectURI)
Returns a channel message sink that delivers messages to the specified URL or channel data object.
Provides conduits for messages that cross remoting boundaries.
Definition: IChannel.cs:8
Defines the interface for a message sink.
Definition: IMessageSink.cs:8
Provides required functions and properties for the sender channels.