2 writes to MaxTransactedBatchSize
System.ServiceModel (2)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
806
channelDispatcher.
MaxTransactedBatchSize
= transactedBatchSize;
System\ServiceModel\Description\TransactedBatchingBehavior.cs (1)
74
behavior.CallbackDispatchRuntime.ChannelDispatcher.
MaxTransactedBatchSize
= this.MaxBatchSize;
6 references to MaxTransactedBatchSize
System.ServiceModel (6)
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
142
if (channelDispatcher.
MaxTransactedBatchSize
> 0)
163
else if (channelDispatcher.IsTransactedReceive && channelDispatcher.ReceiveContextEnabled && channelDispatcher.
MaxTransactedBatchSize
> 0)
System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (1)
28
return channelDispatcher.IsTransactedReceive && (channelDispatcher.
MaxTransactedBatchSize
> 0);
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
126
if (this.channelDispatcher.IsTransactedReceive && this.channelDispatcher.ReceiveContextEnabled && this.channelDispatcher.
MaxTransactedBatchSize
> 0)
System\ServiceModel\Dispatcher\TransactedBatchContext.cs (2)
181
this.maxBatchSize = dispatcher.
MaxTransactedBatchSize
;
183
this.currentBatchSize = dispatcher.
MaxTransactedBatchSize
;