2 writes to _channelFactory
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
52_channelFactory = new ChannelFactory<TChannel>(binding, remoteAddress); 65_channelFactory = new DuplexChannelFactory<TChannel>(callbackInstance, binding, remoteAddress);
19 references to _channelFactory
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (19)
53_channelFactory.TraceOpenAndClose = false; 66_channelFactory.TraceOpenAndClose = false; 113return _channelFactory; 121return _channelFactory.Credentials; 137return _channelFactory.State; 154return _channelFactory.Endpoint; 160((ICommunicationObject)this).Open(_channelFactory.InternalOpenTimeout); 170_channelFactory.Abort(); 175((ICommunicationObject)this).Close(_channelFactory.InternalCloseTimeout); 185return _channelFactory.CreateChannel(); 196_channelFactory.Open(timeoutHelper.RemainingTime()); 215_channelFactory.Close(timeoutHelper.RemainingTime()); 281return ((ICommunicationObject)this).BeginClose(_channelFactory.InternalCloseTimeout, callback, state); 296return ((ICommunicationObject)this).BeginOpen(_channelFactory.InternalOpenTimeout, callback, state); 313return _channelFactory.BeginOpen(timeout, callback, state); 318_channelFactory.EndOpen(result); 333return _channelFactory.BeginClose(timeout, callback, state); 344_channelFactory.EndClose(result); 532ChannelFactory<T> cf = client._channelFactory;