3 instantiations of UdpTransportBindingElement
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportBindingElement.cs (1)
172
return new
UdpTransportBindingElement
(this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (1)
51
UdpTransportBindingElement transport = new
UdpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (1)
23
_udpTransport = new
UdpTransportBindingElement
();
12 references to UdpTransportBindingElement
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportBindingElement.cs (3)
41
internal UdpTransportBindingElement(
UdpTransportBindingElement
other)
226
UdpTransportBindingElement
udpTransport = b as
UdpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (3)
51
UdpTransportBindingElement
transport = new UdpTransportBindingElement();
77
if (transportBindingElement is
UdpTransportBindingElement
)
85
if (transportBindingElement is
UdpTransportBindingElement
)
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (6)
17
private
UdpTransportBindingElement
_udpTransport;
26
private UdpBinding(
UdpTransportBindingElement
transport, TextMessageEncodingBindingElement encoding)
155
private bool BindingElementsPropertiesMatch(
UdpTransportBindingElement
transport, MessageEncodingBindingElement encoding)
197
UdpTransportBindingElement
transport = null;
202
if (bindingElement is
UdpTransportBindingElement
)
204
transport = bindingElement as
UdpTransportBindingElement
;