6 writes to Transactions
System.ServiceModel (6)
System\ServiceModel\Channels\TransactionFlowBindingElementImporter.cs (1)
117tfbe.Transactions = true;
System\ServiceModel\Configuration\TransactionFlowElement.cs (1)
26binding.Transactions = true;
System\ServiceModel\NetNamedPipeBinding.cs (1)
58set { context.Transactions = value; }
System\ServiceModel\NetTcpBinding.cs (1)
54set { context.Transactions = value; }
System\ServiceModel\WSDualHttpBinding.cs (1)
86set { this.txFlow.Transactions = value; }
System\ServiceModel\WSHttpBindingBase.cs (1)
61set { this.txFlow.Transactions = value; }
13 references to Transactions
System.ServiceModel (13)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
419instance.SetProperty(AdministrationStrings.TransactionFlow, specificElement.Transactions);
System\ServiceModel\Channels\TransactionFlowBindingElement.cs (3)
326if (this.Transactions || (this.IssuedTokens != TransactionFlowOption.NotAllowed)) 329if (this.Transactions) 414if (bindingElement == null || !bindingElement.Transactions)
System\ServiceModel\Dispatcher\TransactionValidationBehavior.cs (1)
50if (transactionFlowBindingElement == null || !transactionFlowBindingElement.Transactions)
System\ServiceModel\NetNamedPipeBinding.cs (2)
57get { return context.Transactions; } 181this.TransactionFlow = context.Transactions;
System\ServiceModel\NetTcpBinding.cs (2)
53get { return context.Transactions; } 225this.TransactionFlow = context.Transactions;
System\ServiceModel\WSDualHttpBinding.cs (2)
85get { return this.txFlow.Transactions; } 260this.TransactionFlow = txFlow.Transactions;
System\ServiceModel\WSHttpBindingBase.cs (2)
60get { return this.txFlow.Transactions; } 249this.TransactionFlow = txFlow.Transactions;