8 references to CreateUnicastListenSocket
System.ServiceModel.Channels (8)
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
263
UdpSocket socket = UdpUtility.
CreateUnicastListenSocket
(localAddress, ref port, this.udpTransportBindingElement.SocketReceiveBufferSize,
System\ServiceModel\Channels\UdpChannelListener.cs (5)
602
this.listenSockets.Add(UdpUtility.
CreateUnicastListenSocket
(address, ref port,
624
this.listenSockets.Add(UdpUtility.
CreateUnicastListenSocket
(v4Address, ref port, this.udpTransportBindingElement.SocketReceiveBufferSize, this.udpTransportBindingElement.TimeToLive));
625
this.listenSockets.Add(UdpUtility.
CreateUnicastListenSocket
(v6Address, ref port, this.udpTransportBindingElement.SocketReceiveBufferSize, this.udpTransportBindingElement.TimeToLive));
630
this.listenSockets.Add(UdpUtility.
CreateUnicastListenSocket
(v4Address, ref port, this.udpTransportBindingElement.SocketReceiveBufferSize, this.udpTransportBindingElement.TimeToLive));
634
this.listenSockets.Add(UdpUtility.
CreateUnicastListenSocket
(v6Address, ref port, this.udpTransportBindingElement.SocketReceiveBufferSize, this.udpTransportBindingElement.TimeToLive));
System\ServiceModel\Channels\UdpUtility.cs (2)
179
ipv4Socket = UdpUtility.
CreateUnicastListenSocket
(ipv4Address, ref port, receiveBufferSize, timeToLive);
180
ipv6Socket = UdpUtility.
CreateUnicastListenSocket
(ipv6Address, ref port, receiveBufferSize, timeToLive);