3 implementations of AllowOutputBatching
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1399bool IContextChannel.AllowOutputBatching
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
681bool IContextChannel.AllowOutputBatching
System\ServiceModel\ClientBase.cs (1)
996bool IContextChannel.AllowOutputBatching
2 writes to AllowOutputBatching
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
689((IContextChannel)_serviceChannel).AllowOutputBatching = value;
System\ServiceModel\ClientBase.cs (1)
999set { ((IContextChannel)_channel).AllowOutputBatching = value; }
2 references to AllowOutputBatching
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
685return ((IContextChannel)_serviceChannel).AllowOutputBatching;
System\ServiceModel\ClientBase.cs (1)
998get { return ((IContextChannel)_channel).AllowOutputBatching; }