56 references to ChannelServices
mscorlib (27)
system\runtime\remoting\channelservices.cs (5)
702replyMsg = ChannelServices.GetCrossContextChannelSink().SyncProcessMessage(msg); 758ChannelServices.GetCrossContextChannelSink().AsyncProcessMessage(msg, null); 770replyMsg = ChannelServices.GetCrossContextChannelSink().SyncProcessMessage(msg); 843IMessageSink nextSink = ChannelServices.GetCrossContextChannelSink(); 911ctrl = ChannelServices.GetCrossContextChannelSink().AsyncProcessMessage(msg, replySink);
system\runtime\remoting\configuration.cs (2)
444ChannelServices.RegisterChannel(chnl, ensureSecurity); 1774ChannelServices.RegisterChannel(_channel, _ensureSecurity);
system\runtime\remoting\crossappdomainchannel.cs (2)
70ChannelServices.RegisterChannelInternal((IChannel)adc, false /*ensureSecurity*/); 381IMessage retMsg = ChannelServices.SyncDispatchMessage(desReqMsg);
system\runtime\remoting\dispatchchannelsink.cs (1)
77return ChannelServices.DispatchMessage(sinkStack, requestMsg, out responseMsg);
system\runtime\remoting\objref.cs (2)
309ChannelData = ChannelServices.CurrentChannelData; 1058String httpUri = ChannelServices.FindFirstHttpUrlForObject(URI);
system\runtime\remoting\realproxy.cs (1)
791ChannelServices.IncrementRemoteCalls();
system\runtime\remoting\remotingproxy.cs (3)
106ChannelServices.NotifyProfiler(reqMsg, RemotingProfilerEvent.ClientSend); 121ChannelServices.NotifyProfiler(retMsg, RemotingProfilerEvent.ClientReceive); 428cc = ChannelServices.AsyncDispatchMessage(
system\runtime\remoting\remotingservices.cs (9)
610Object[] channelData = ChannelServices.CurrentChannelData; 1571chnlSink = ChannelServices.GetCrossContextChannelSink(); 1585chnlSink = ChannelServices.CreateMessageSink(channelData[i]); 1606chnlSink = ChannelServices.CreateMessageSink(channelData[i]); 1666chnlSink = ChannelServices.CreateMessageSink(url, data, out objectURI); 1673chnlSink = ChannelServices.CreateMessageSink(url, data, out objectURI); 2382if (ChannelServices.RegisteredChannels.Length == 0) 2397if (ChannelServices.RegisteredChannels.Length == 0) 2437if (ChannelServices.RegisteredChannels.Length == 0)
system\runtime\remoting\terminatorsinks.cs (2)
325ChannelServices.NotifyProfiler(reqMsg, RemotingProfilerEvent.ClientSend); 348ChannelServices.NotifyProfiler(replyMsg, RemotingProfilerEvent.ClientReceive);
System.AddIn (1)
System\Addin\Hosting\RemotingHelper.cs (1)
52ChannelServices.RegisterChannel(ichannel, false);
System.Runtime.Remoting (26)
channels\http\combinedhttpchannel.cs (1)
101if (((IList)ChannelServices.RegisteredChannels).Contains(this))
channels\http\httpremotinghandler.cs (3)
126IChannel[] channels = ChannelServices.RegisteredChannels; 148ChannelServices.RegisterChannel(newHttpChannel, false/*enableSecurity*/); 177ChannelServices.UnregisterChannel(null);
channels\http\httpserverchannel.cs (1)
197_sinkChain = ChannelServices.CreateServerChannelSinkChain(_sinkProvider, this);
channels\ipc\ipcchannel.cs (1)
109if (((IList)ChannelServices.RegisteredChannels).Contains(this))
channels\ipc\ipcserverchannel.cs (1)
160IServerChannelSink sink = ChannelServices.CreateServerChannelSinkChain(_sinkProvider, this);
channels\tcp\combinedtcpchannel.cs (1)
101if (((IList)ChannelServices.RegisteredChannels).Contains(this))
channels\tcp\tcpserverchannel.cs (1)
221IServerChannelSink sink = ChannelServices.CreateServerChannelSinkChain(_sinkProvider, this);
services\remotingclientproxy.cs (17)
50get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"];} 51set { ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"] = value;} 71get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"];} 72set { ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"] = value;} 85get { return (int)ChannelServices.GetChannelSinkProperties(_tp)["timeout"];} 86set { ChannelServices.GetChannelSinkProperties(_tp)["timeout"] = value;} 106ChannelServices.GetChannelSinkProperties(_tp)["url"] = value; 120get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["username"];} 121set { ChannelServices.GetChannelSinkProperties(_tp)["username"] = value;} 127get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["password"];} 128set { ChannelServices.GetChannelSinkProperties(_tp)["password"] = value;} 134get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["domain"];} 135set { ChannelServices.GetChannelSinkProperties(_tp)["domain"] = value;} 141get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["proxyname"];} 142set { ChannelServices.GetChannelSinkProperties(_tp)["Proxyname"] = value;} 147get { return(int)ChannelServices.GetChannelSinkProperties(_tp)["proxyport"];} 148set { ChannelServices.GetChannelSinkProperties(_tp)["proxyport"] = value;}
System.Workflow.Runtime (2)
DebugEngine\DebugController.cs (2)
348ChannelServices.RegisterChannel(this.channel, true); 398ChannelServices.UnregisterChannel(this.channel);