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