3 implementations of AllowOutputBatching
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1404bool IContextChannel.AllowOutputBatching
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
666bool IContextChannel.AllowOutputBatching
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
619bool IContextChannel.AllowOutputBatching
2 writes to AllowOutputBatching
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
674((IContextChannel)_serviceChannel).AllowOutputBatching = value;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
622set { ((IContextChannel)_channel).AllowOutputBatching = value; }
2 references to AllowOutputBatching
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
670return ((IContextChannel)_serviceChannel).AllowOutputBatching;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
621get { return ((IContextChannel)_channel).AllowOutputBatching; }