5 instantiations of TcpTransportBindingElement
dotnet-svcutil-lib (5)
CodeDomFixup\MethodCreationHelper.cs (1)
1202
TcpTransportBindingElement defaultBindingElement = new
TcpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TcpTransportBindingElement.cs (1)
54
return new
TcpTransportBindingElement
(this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
151
transportBindingElement = new
TcpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
198
TcpTransportBindingElement tcpTransport = new
TcpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
163
_transport = new
TcpTransportBindingElement
();
24 references to TcpTransportBindingElement
dotnet-svcutil-lib (24)
CodeDomFixup\EndpointSelector.cs (2)
127
if (!(bindingElement is HttpTransportBindingElement || bindingElement is HttpsTransportBindingElement || bindingElement is
TcpTransportBindingElement
|| bindingElement is NamedPipeTransportBindingElement))
130
typeof(HttpTransportBindingElement).FullName, typeof(HttpsTransportBindingElement).FullName, typeof(
TcpTransportBindingElement
).FullName));
CodeDomFixup\MethodCreationHelper.cs (7)
1014
TcpTransportBindingElement
tcpTE = bindingElement as
TcpTransportBindingElement
;
1200
private static void AddTcpBindingElement(CodeStatementCollection statements, CodeVariableReferenceExpression customBinding,
TcpTransportBindingElement
bindingElement)
1202
TcpTransportBindingElement
defaultBindingElement = new TcpTransportBindingElement();
1204
typeof(
TcpTransportBindingElement
),
1206
new CodeObjectCreateExpression(typeof(
TcpTransportBindingElement
)));
1299
typeof(
TcpTransportBindingElement
),
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StandardBindingImporter.cs (1)
52
else if (transport is
TcpTransportBindingElement
&& NetTcpBinding.TryCreate(elements, out binding))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TcpChannelFactory.cs (1)
12
public TcpChannelFactory(
TcpTransportBindingElement
bindingElement, BindingContext context)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TcpTransportBindingElement.cs (3)
21
protected TcpTransportBindingElement(
TcpTransportBindingElement
elementToBeCloned)
100
TcpTransportBindingElement
tcp = b as
TcpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
198
TcpTransportBindingElement
tcpTransport = new TcpTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (8)
16
private
TcpTransportBindingElement
_transport;
37
private NetTcpBinding(
TcpTransportBindingElement
transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session, NetTcpSecurity security)
46
private NetTcpBinding(
TcpTransportBindingElement
transport,
174
private void InitializeFrom(
TcpTransportBindingElement
transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session)
209
private bool IsBindingElementsMatch(
TcpTransportBindingElement
transport, BinaryMessageEncodingBindingElement encoding)
232
private bool IsBindingElementsMatch(
TcpTransportBindingElement
transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session)
332
TcpTransportBindingElement
transport = null;
344
transport = element as
TcpTransportBindingElement
;
Metadata\MetadaExchangeResolver.cs (1)
392
binding.Elements.Find<
TcpTransportBindingElement
>().MaxReceivedMessageSize = MaxRecievedMexMessageSize;