mscorlib(4.0.0.0) API with additions
IChannelReceiver.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IChannelReceiver : IChannel
9  {
13  object ChannelData
14  {
15  [SecurityCritical]
16  get;
17  }
18 
23  [SecurityCritical]
24  string[] GetUrlsForUri(string objectURI);
25 
29  [SecurityCritical]
30  void StartListening(object data);
31 
35  [SecurityCritical]
36  void StopListening(object data);
37  }
38 }
Definition: __Canon.cs:3
void StartListening(object data)
Instructs the current channel to start listening for requests.
Provides required functions and properties for the receiver channels.
void StopListening(object data)
Instructs the current channel to stop listening for requests.
string [] GetUrlsForUri(string objectURI)
Returns an array of all the URLs for a URI.
Provides conduits for messages that cross remoting boundaries.
Definition: IChannel.cs:8
object ChannelData
Gets the channel-specific data.