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