8 instantiations of UdpTransportBindingElement
System.ServiceModel.Channels (7)
System\ServiceModel\Channels\UdpTransportBindingElement.cs (4)
159return (IChannelFactory<TChannel>)(object)new UdpChannelFactory<TChannel>(new UdpTransportBindingElement(this), context); 172listener = (IChannelListener<TChannel>) new UdpDuplexChannelListener(new UdpTransportBindingElement(this), context); 176listener = (IChannelListener<TChannel>) new UdpReplyChannelListener(new UdpTransportBindingElement(this), context); 221return new UdpTransportBindingElement(this);
System\ServiceModel\Channels\UdpTransportImporter.cs (1)
50UdpTransportBindingElement transport = new UdpTransportBindingElement();
System\ServiceModel\Configuration\UdpTransportElement.cs (1)
55return new UdpTransportBindingElement();
System\ServiceModel\UdpBinding.cs (1)
25this.udpTransport = new UdpTransportBindingElement();
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryDefaults.cs (1)
36UdpTransportBindingElement udpBE = new UdpTransportBindingElement();
33 references to UdpTransportBindingElement
System.ServiceModel.Channels (27)
System\ServiceModel\Channels\UdpChannelFactory.cs (2)
17UdpTransportBindingElement udpTransportBindingElement; 19internal UdpChannelFactory(UdpTransportBindingElement transportBindingElement, BindingContext context)
System\ServiceModel\Channels\UdpChannelListener.cs (5)
31UdpTransportBindingElement udpTransportBindingElement; 35internal UdpChannelListener(UdpTransportBindingElement udpTransportBindingElement, BindingContext context) 120internal UdpTransportBindingElement UdpTransportBindingElement 731public UdpDuplexChannelListener(UdpTransportBindingElement udpTransportBindingElement, BindingContext context) 744public UdpReplyChannelListener(UdpTransportBindingElement udpTransportBindingElement, BindingContext context)
System\ServiceModel\Channels\UdpTransportBindingElement.cs (3)
41internal UdpTransportBindingElement(UdpTransportBindingElement other) 312UdpTransportBindingElement udpTransport = b as UdpTransportBindingElement;
System\ServiceModel\Channels\UdpTransportBindingElementPolicy.cs (1)
27internal static void ExportRetransmissionEnabledAssertion(UdpTransportBindingElement bindingElement, PolicyAssertionCollection assertions)
System\ServiceModel\Channels\UdpTransportImporter.cs (3)
50UdpTransportBindingElement transport = new UdpTransportBindingElement(); 76if (transportBindingElement is UdpTransportBindingElement) 84if (transportBindingElement is UdpTransportBindingElement)
System\ServiceModel\Channels\UdpUtility.cs (2)
225throw FxTrace.Exception.AsError(new InvalidOperationException(SR.TransportRequiresAddressingOnEncoderForRetransmission(encoderMessageVersion, "RetransmissionSettings", typeof(UdpTransportBindingElement).Name))); 230throw FxTrace.Exception.AsError(new InvalidOperationException(SR.TransportRequiresAddressingOnEncoderForDuplicateDetection(encoderMessageVersion, "DuplicateMessageHistoryLength", typeof(UdpTransportBindingElement).Name)));
System\ServiceModel\Configuration\UdpTransportElement.cs (5)
21UdpTransportBindingElement udpTransportBindingElement = (UdpTransportBindingElement)bindingElement; 35UdpTransportBindingElement udpTransportBindingElement = (UdpTransportBindingElement)bindingElement; 50get { return typeof(UdpTransportBindingElement); }
System\ServiceModel\UdpBinding.cs (6)
19UdpTransportBindingElement udpTransport; 46private UdpBinding(UdpTransportBindingElement transport, TextMessageEncodingBindingElement encoding) 175bool BindingElementsPropertiesMatch(UdpTransportBindingElement transport, MessageEncodingBindingElement encoding) 217UdpTransportBindingElement transport = null; 222if (bindingElement is UdpTransportBindingElement) 224transport = bindingElement as UdpTransportBindingElement;
System.ServiceModel.Discovery (6)
System\ServiceModel\Discovery\DiscoveryDefaults.cs (2)
34public static UdpTransportBindingElement CreateUdpTransportBindingElement() 36UdpTransportBindingElement udpBE = new UdpTransportBindingElement();
System\ServiceModel\Discovery\UdpAnnouncementEndpoint.cs (1)
99UdpTransportBindingElement udpBE = DiscoveryDefaults.Udp.CreateUdpTransportBindingElement();
System\ServiceModel\Discovery\UdpDiscoveryEndpoint.cs (1)
104UdpTransportBindingElement udpBE = DiscoveryDefaults.Udp.CreateUdpTransportBindingElement();
System\ServiceModel\Discovery\UdpTransportSettings.cs (2)
15internal UdpTransportSettings(UdpTransportBindingElement udpTransportBindingElement) 131internal UdpTransportBindingElement UdpTransportBindingElement