1 write to InnerChannelFactory
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
16
InnerChannelFactory
= innerChannelFactory;
15 references to InnerChannelFactory
System.ServiceModel.Primitives (15)
System\ServiceModel\Channels\LayeredChannelFactory.cs (8)
34
return
InnerChannelFactory
.GetProperty<T>();
39
return
InnerChannelFactory
.BeginOpen(timeout, callback, state);
44
InnerChannelFactory
.EndOpen(result);
61
await
InnerChannelFactory
.CloseHelperAsync(timeoutHelper.RemainingTime());
68
InnerChannelFactory
.Close(timeoutHelper.RemainingTime());
73
return
InnerChannelFactory
.OpenHelperAsync(timeout);
78
InnerChannelFactory
.Open(timeout);
84
InnerChannelFactory
.Abort();
System\ServiceModel\Channels\SecurityChannelFactory.cs (7)
150
return (TChannel)(object)new SecurityOutputChannel(this, SecurityProtocolFactory, ((IChannelFactory<IOutputChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
154
return (TChannel)(object)new SecurityOutputSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IOutputSessionChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
158
return (TChannel)(object)new SecurityDuplexChannel(this, SecurityProtocolFactory, ((IChannelFactory<IDuplexChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
162
return (TChannel)(object)new SecurityDuplexSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IDuplexSessionChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
166
return (TChannel)(object)new SecurityRequestChannel(this, SecurityProtocolFactory, ((IChannelFactory<IRequestChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
170
return (TChannel)(object)new SecurityRequestSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IRequestSessionChannel>)
InnerChannelFactory
).CreateChannel(address, via), address, via);
228
return SessionClientSettings.OpenAsync(this,
InnerChannelFactory
, ChannelBuilder, timeoutHelper.RemainingTime());