6 instantiations of TransactionFlowBindingElement
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (1)
94return new TransactionFlowBindingElement(this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElementImporter.cs (1)
201settings = new TransactionFlowBindingElement(false);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (1)
130return new TransactionFlowBindingElement(false);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (2)
158return new TransactionFlowBindingElement(NetTcpDefaults.TransactionsEnabled); 165_context = new TransactionFlowBindingElement(NetTcpDefaults.TransactionsEnabled);
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
168TransactionFlowBindingElement tfbe = new TransactionFlowBindingElement(false);
39 references to TransactionFlowBindingElement
dotnet-svcutil-lib (39)
CodeDomFixup\EndpointSelector.cs (1)
201else if (bindingElement is TransactionFlowBindingElement)
CodeDomFixup\MethodCreationHelper.cs (2)
1044TransactionFlowBindingElement transactionBE = bindingElement as TransactionFlowBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (3)
51private TransactionFlowBindingElement(TransactionFlowBindingElement elementToBeCloned) 326TransactionFlowBindingElement txFlow = b as TransactionFlowBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElementImporter.cs (4)
117TransactionFlowBindingElement tfbe = EnsureBindingElement(context); 196private TransactionFlowBindingElement EnsureBindingElement(PolicyConversionContext context) 198TransactionFlowBindingElement settings = context.BindingElements.Find<TransactionFlowBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TransactionFlowAttribute.cs (1)
21TransactionFlowBindingElement.ValidateOption(transactions);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (7)
14TransactionFlowBindingElement _context; 128static TransactionFlowBindingElement GetDefaultTransactionFlowBindingElement() 140void InitializeFrom(NamedPipeTransportBindingElement namedPipe, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context) 159bool IsBindingElementsMatch(NamedPipeTransportBindingElement namedPipe, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context) 196TransactionFlowBindingElement context = null; 203if (element is TransactionFlowBindingElement) 204context = element as TransactionFlowBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (8)
18private TransactionFlowBindingElement _context; 37private NetTcpBinding(TcpTransportBindingElement transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session, NetTcpSecurity security) 156private static TransactionFlowBindingElement GetDefaultTransactionFlowBindingElement() 174private void InitializeFrom(TcpTransportBindingElement transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session) 232private bool IsBindingElementsMatch(TcpTransportBindingElement transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session) 334TransactionFlowBindingElement context = null; 347else if (element is TransactionFlowBindingElement) 348context = element as TransactionFlowBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007FederationHttpBinding.cs (1)
67internal new static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, PrivacyNoticeBindingElement privacy, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007HttpBinding.cs (1)
66internal new static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (1)
104internal static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, PrivacyNoticeBindingElement privacy, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (1)
102internal static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (9)
30private TransactionFlowBindingElement _txFlow; 161internal TransactionFlowBindingElement TransactionFlowBindingElement 166private static TransactionFlowBindingElement GetDefaultTransactionFlowBindingElement() 168TransactionFlowBindingElement tfbe = new TransactionFlowBindingElement(false); 187private void InitializeFrom(HttpTransportBindingElement transport, MessageEncodingBindingElement encoding, TransactionFlowBindingElement txFlow, ReliableSessionBindingElement session) 223private bool IsBindingElementsMatch(HttpTransportBindingElement transport, MessageEncodingBindingElement encoding, TransactionFlowBindingElement txFlow, ReliableSessionBindingElement session) 294TransactionFlowBindingElement txFlow = null; 308else if (element is TransactionFlowBindingElement) 309txFlow = element as TransactionFlowBindingElement;