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