3 types derived from TransportBindingElement
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionOrientedTransportBindingElement.cs (1)
11: TransportBindingElement,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
18: TransportBindingElement, ITransportPolicyImport
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportBindingElement.cs (1)
18: TransportBindingElement,
50 references to TransportBindingElement
dotnet-svcutil-lib (50)
CodeDomFixup\EndpointSelector.cs (1)
125if (bindingElement is TransportBindingElement)
CodeDomFixup\System.ServiceModel.FederationCodeGen.cs (1)
43protected override System.ServiceModel.Channels.TransportBindingElement GetTransport() => default;
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
160else if (element is TransportBindingElement)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncodingBindingElement.cs (2)
184TransportBindingElement transport = context.Binding.Elements.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (2)
220TransportBindingElement transport = null; 224transport = elements[index] as TransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CustomBinding.cs (2)
128TransportBindingElement transport = _bindingElements.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
277TransportBindingElement transportElement = context.RemainingBindingElements.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
145binding.CreateBindingElements().Find<TransportBindingElement>().ManualAddressing) 167binding.CreateBindingElements().Find<TransportBindingElement>().ManualAddressing)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StandardBindingImporter.cs (2)
34TransportBindingElement transport = elements.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElement.cs (4)
26protected TransportBindingElement(TransportBindingElement elementToBeCloned) 86internal static IChannelFactory<TChannel> CreateChannelFactory<TChannel>(TransportBindingElement transport) 159TransportBindingElement transport = b as TransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (8)
45TransportBindingElement transportBindingElement = GetBindingElements(context).Find<TransportBindingElement>(); 83private static void ImportAddress(WsdlEndpointConversionContext context, TransportBindingElement transportBindingElement) 103TransportBindingElement transportBindingElement = CreateTransportBindingElements(soapBinding.Transport, null); 125if (transportUri != null && !policyContext.BindingElements.Contains(typeof(TransportBindingElement))) 127TransportBindingElement transportBindingElement = CreateTransportBindingElements(transportUri, policyContext); 141private static TransportBindingElement CreateTransportBindingElements(string transportUri, PolicyConversionContext policyContext) 143TransportBindingElement transportBindingElement = null;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportChannelFactory.cs (2)
18protected TransportChannelFactory(TransportBindingElement bindingElement, BindingContext context) 23protected TransportChannelFactory(TransportBindingElement bindingElement, BindingContext context,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (3)
49if (transportUri != null && transportUri.Equals(UdpConstants.WsdlSoapUdpTransportUri, StringComparison.Ordinal) && !context.BindingElements.Contains(typeof(TransportBindingElement))) 76TransportBindingElement transportBindingElement = bindingElements.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
305TransportBindingElement transport = binding.CreateBindingElements().Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (2)
413TransportBindingElement bindingElement = bindingElementCollection.Find<TransportBindingElement>();
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
250internal TransportBindingElement GetTransport()
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
193else if (element is TransportBindingElement)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
343else if (element is TransportBindingElement)
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 (3)
104internal static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, PrivacyNoticeBindingElement privacy, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding) 145protected override TransportBindingElement GetTransport() 157internal static bool GetSecurityModeFromTransport(TransportBindingElement transport, HttpTransportSecurity transportSecurity, out WSFederationHttpSecurityMode mode)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (4)
102internal static bool TryCreate(SecurityBindingElement sbe, TransportBindingElement transport, ReliableSessionBindingElement rsbe, TransactionFlowBindingElement tfbe, out Binding binding) 152protected override TransportBindingElement GetTransport() 166internal static bool GetSecurityModeFromTransport(TransportBindingElement transport, HttpTransportSecurity transportSecurity, out UnifiedSecurityMode mode) 185internal static bool TryGetAllowCookiesFromTransport(TransportBindingElement transport, out bool allowCookies)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (2)
304else if (element is TransportBindingElement) 358protected abstract TransportBindingElement GetTransport();