1 instantiation of TransactedBatchingBehavior
System.ServiceModel (1)
System\ServiceModel\Configuration\TransactedBatchingElement.cs (1)
31return new TransactedBatchingBehavior(this.MaxBatchSize);
5 references to TransactedBatchingBehavior
System.ServiceModel (5)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
514else if (behavior is TransactedBatchingBehavior) 517instance.SetProperty(AdministrationStrings.MaxBatchSize, ((TransactedBatchingBehavior)behavior).MaxBatchSize);
System\ServiceModel\Configuration\TransactedBatchingElement.cs (1)
36get { return typeof(TransactedBatchingBehavior); }
System\ServiceModel\Description\DispatcherBuilder.cs (2)
774TransactedBatchingBehavior batchBehavior = endpoint.Behaviors.Find<TransactedBatchingBehavior>();