mscorlib(4.0.0.0) API with additions
IChannel.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IChannel
9  {
13  int ChannelPriority
14  {
15  [SecurityCritical]
16  get;
17  }
18 
22  string ChannelName
23  {
24  [SecurityCritical]
25  get;
26  }
27 
33  [SecurityCritical]
34  string Parse(string url, out string objectURI);
35  }
36 }
int ChannelPriority
Gets the priority of the channel.
Definition: IChannel.cs:14
string ChannelName
Gets the name of the channel.
Definition: IChannel.cs:23
Definition: __Canon.cs:3
Provides conduits for messages that cross remoting boundaries.
Definition: IChannel.cs:8
string Parse(string url, out string objectURI)
Returns the object URI as an out parameter, and the URI of the current channel as the return value.