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