3 implementations of AllowInitializationUI
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1389bool IClientChannel.AllowInitializationUI
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
628bool IClientChannel.AllowInitializationUI
System\ServiceModel\ClientBase.cs (1)
979bool IClientChannel.AllowInitializationUI
3 writes to AllowInitializationUI
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
636((IClientChannel)_serviceChannel).AllowInitializationUI = value;
System\ServiceModel\ClientBase.cs (1)
982set { ((IClientChannel)_channel).AllowInitializationUI = value; }
System.ServiceModel.Primitives.Tests (1)
Channels\CustomChannelTest.cs (1)
673((IClientChannel)channel).AllowInitializationUI = false;
2 references to AllowInitializationUI
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
632return ((IClientChannel)_serviceChannel).AllowInitializationUI;
System\ServiceModel\ClientBase.cs (1)
981get { return ((IClientChannel)_channel).AllowInitializationUI; }