67 instantiations of IPEndPoint
SMSvcHost (3)
System\ServiceModel\Activation\RoutingTable.cs (1)
203
return new
IPEndPoint
(address, path.Port);
System\ServiceModel\Activation\TransportListener.cs (2)
48
connectionListener = new SocketConnectionListener(new
IPEndPoint
(IPAddress.Any, endPoint.Port), socketSettings, true);
54
connectionListener = new SocketConnectionListener(new
IPEndPoint
(IPAddress.IPv6Any, endPoint.Port), socketSettings, true);
System (40)
net\System\Net\_AutoWebProxyScriptHelper.cs (2)
615
IPEndPoint dummy = new
IPEndPoint
(IPAddress.Any, 0);
627
IPEndPoint IPv6EndPoint = new
IPEndPoint
(v6Address, IPv4EndPoint.Port);
net\System\Net\_FtpControlStream.cs (3)
703
IPEndPoint localEndPoint = new
IPEndPoint
(((IPEndPoint)Socket.LocalEndPoint).Address, 0);
706
m_PassiveEndPoint = new
IPEndPoint
(ServerAddress, port);
1097
IPEndPoint epListener = new
IPEndPoint
(((IPEndPoint)Socket.LocalEndPoint).Address, 0);
net\System\Net\DNS.cs (1)
1198
SocketAddress address = (new
IPEndPoint
(addr,0)).Serialize();
net\System\Net\IPEndPoint.cs (3)
38
internal static IPEndPoint Any = new
IPEndPoint
(IPAddress.Any, AnyPort);
39
internal static IPEndPoint IPv6Any = new
IPEndPoint
(IPAddress.IPv6Any,AnyPort);
167
return new
IPEndPoint
(Address.Snapshot(), Port);
net\System\Net\NetworkInformation\ping.cs (1)
682
IPEndPoint ep = new
IPEndPoint
(address, 0);
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (2)
286
udpListeners.Add(new
IPEndPoint
(udpRow.localAddr, (int)localPort));
335
udpListeners.Add(new
IPEndPoint
(new IPAddress(udp6RowOwnerPid.localAddr,
net\System\Net\NetworkInformation\SystemTcpConnection.cs (4)
33
localEndPoint = new
IPEndPoint
(row.localAddr,(int)localPort);
34
remoteEndPoint= new
IPEndPoint
(row.remoteAddr,(int)remotePort);
47
localEndPoint = new
IPEndPoint
(new IPAddress(row.localAddr, row.localScopeId), (int)localPort);
48
remoteEndPoint = new
IPEndPoint
(new IPAddress(row.remoteAddr, row.remoteScopeId), (int)remotePort);
net\System\Net\ServicePoint.cs (2)
1288
IPEndPoint clonedRemoteIPEndPoint = new
IPEndPoint
(remoteIPEndPoint.Address, remoteIPEndPoint.Port);
1411
remoteIPEndPoint = new
IPEndPoint
(ipAddressInfo, m_Port);
net\System\Net\SocketAddress.cs (1)
212
return new
IPEndPoint
(address, port);
net\System\Net\Sockets\_MultipleConnectAsync.cs (1)
232
internalArgs.RemoteEndPoint = new
IPEndPoint
(attemptAddress, endPoint.Port);
net\System\Net\Sockets\Socket.cs (10)
1058
IPEndPoint remoteEP = new
IPEndPoint
(address, port);
1109
Connect(new
IPEndPoint
(address,port) );
3138
IAsyncResult result = BeginConnect(new
IPEndPoint
(address,port),requestCallback,state);
5886
return new
IPEndPoint
(input.Address.MapToIPv6(), input.Port);
6890
InternalBind(new
IPEndPoint
(IPAddress.Any, 0));
6892
InternalBind(new
IPEndPoint
(IPAddress.IPv6Any, 0));
7084
return new
IPEndPoint
(addresses[index], port);
7103
EndPoint endPoint = new
IPEndPoint
(currentAddressSnapshot, context.port);
7815
InternalBind(new
IPEndPoint
(IPAddress.Any, 0));
7817
InternalBind(new
IPEndPoint
(IPAddress.IPv6Any, 0));
net\System\Net\Sockets\TCPClient.cs (2)
260
Connect( new
IPEndPoint
(address,port) );
328
IPEndPoint remoteEP = new
IPEndPoint
(address, port);
net\System\Net\Sockets\TCPListener.cs (2)
57
m_ServerSocketEP = new
IPEndPoint
(localaddr, port);
78
m_ServerSocketEP = new
IPEndPoint
(IPAddress.Any, port);
net\System\Net\Sockets\UDPClient.cs (6)
100
localEP = new
IPEndPoint
(IPAddress.Any, port);
103
localEP = new
IPEndPoint
(IPAddress.IPv6Any, port);
379
Connect(new
IPEndPoint
(address, port));
451
IPEndPoint endPoint = new
IPEndPoint
(addr, port);
571
IPEndPoint ipEndPoint = new
IPEndPoint
(addresses[i], port);
663
ipEndPoint = new
IPEndPoint
(addresses[i], port);
System.Net (2)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (1)
362
IPEndPoint IPEndPt = new
IPEndPoint
(IPAddr, port);
net\PeerToPeer\SystemNetHelpers.cs (1)
85
return new
IPEndPoint
(ip, port);
System.Runtime.Remoting (1)
channels\core\socketcache.cs (1)
114
return CreateNewSocket(new
IPEndPoint
(_addressList[0], _port));
System.ServiceModel (12)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
91
socketListener = new SocketConnectionListener(new
IPEndPoint
(ipAddress, port), this, false);
System\ServiceModel\Channels\PnrpPeerResolver.cs (5)
107
return new
IPEndPoint
(new IPAddress(bytes), 0);
480
entry.addressList.Add(new
IPEndPoint
(address, port));
488
global.addressList.Add(new
IPEndPoint
(address, port));
2233
endPoint = new
IPEndPoint
(new IPAddress(sa.sin_addr), sa.sin_port);
2246
endPoint = new
IPEndPoint
(new IPAddress(sa.sin6_addr, scopeId), sa.sin6_port);
System\ServiceModel\Channels\SocketConnection.cs (2)
1722
socket.Connect(new
IPEndPoint
(addresses[i], port));
1876
IPEndPoint ipEndPoint = new
IPEndPoint
(addresses[currentIndex], port);
System\ServiceModel\Channels\TcpChannelListener.cs (4)
366
this.ipv4ListenSocket = ListenAndBind(new
IPEndPoint
(ipv4Address, 0));
371
this.ipv6ListenSocket = ListenAndBind(new
IPEndPoint
(ipv6Address, 0));
403
this.ipv4ListenSocket = ListenAndBind(new
IPEndPoint
(ipv4Address, port));
404
this.ipv6ListenSocket = ListenAndBind(new
IPEndPoint
(ipv6Address, port));
System.ServiceModel.Channels (9)
System\ServiceModel\Channels\ServerUdpOutputChannel.cs (4)
127
remoteEndPoint = new
IPEndPoint
(IPAddress.Parse(destination.DnsSafeHost), destination.Port);
170
remoteEndPoint = new
IPEndPoint
(remoteAddresses[i], destination.Port);
212
remoteEndPoint = new
IPEndPoint
(address, destination.Port);
236
remoteEndPoint = new
IPEndPoint
(address, destination.Port);
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
183
remoteEndPoint = new
IPEndPoint
(remoteAddressList[0], via.Port);
System\ServiceModel\Channels\UdpSocket.cs (2)
160
return new
IPEndPoint
(IPAddress.Any, 0);
164
return new
IPEndPoint
(IPAddress.IPv6Any, 0);
System\ServiceModel\Channels\UdpUtility.cs (2)
120
localEndpoint = new
IPEndPoint
(bindAddress, port);
124
localEndpoint = new
IPEndPoint
(ipAddress, port);
234 references to IPEndPoint
SMSvcHost (9)
System\ServiceModel\Activation\RoutingTable.cs (3)
196
static
IPEndPoint
GetEndPoint(Uri path)
210
IPEndPoint
endPoint = GetEndPoint(path.BaseAddress);
233
IPEndPoint
endPoint = GetEndPoint(path.BaseAddress);
System\ServiceModel\Activation\TransportListener.cs (6)
34
TransportListener(
IPEndPoint
endPoint)
179
internal static void Listen(
IPEndPoint
endPoint)
222
address = (socket.LocalEndPoint as
IPEndPoint
).Address;
223
port = (socket.LocalEndPoint as
IPEndPoint
).Port;
302
internal static void Stop(
IPEndPoint
endPoint)
353
static string GetRemoteEndpointAddressPort(Net.
IPEndPoint
iPEndPoint)
System (116)
net\System\Net\_AutoWebProxyScriptHelper.cs (4)
615
IPEndPoint
dummy = new IPEndPoint(IPAddress.Any, 0);
616
IPEndPoint
IPv4EndPoint = (
IPEndPoint
)dummy.Create(saddrv4);
627
IPEndPoint
IPv6EndPoint = new IPEndPoint(v6Address, IPv4EndPoint.Port);
net\System\Net\_FtpControlStream.cs (10)
47
private
IPEndPoint
m_PassiveEndPoint;
125
if (!connection.ServerAddress.Equals(((
IPEndPoint
)connection.m_DataSocket.RemoteEndPoint).Address))
703
IPEndPoint
localEndPoint = new IPEndPoint(((
IPEndPoint
)Socket.LocalEndPoint).Address, 0);
713
IPEndPoint
passiveEndPoint = m_PassiveEndPoint;
740
if (!ServerAddress.Equals(((
IPEndPoint
)m_DataSocket.RemoteEndPoint).Address))
1097
IPEndPoint
epListener = new IPEndPoint(((
IPEndPoint
)Socket.LocalEndPoint).Address, 0);
1127
IPEndPoint
localEP = (
IPEndPoint
) m_DataSocket.LocalEndPoint;
net\System\Net\Configuration\SmtpNetworkElement.cs (2)
146
null, new IntegerValidator(
IPEndPoint
.MinPort+1,
IPEndPoint
.MaxPort), ConfigurationPropertyOptions.None);
net\System\Net\DNS.cs (4)
1157
addresses.Add( ((
IPEndPoint
)
IPEndPoint
.Any.Create(sockaddr)).Address );
1160
addresses.Add( ((
IPEndPoint
)
IPEndPoint
.IPv6Any.Create(sockaddr)).Address );
net\System\Net\DnsEndPoint.cs (2)
29
if(port <
IPEndPoint
.MinPort || port >
IPEndPoint
.MaxPort) {
net\System\Net\HttpListenerRequest.cs (4)
227
private
IPEndPoint
m_LocalEndPoint;
228
private
IPEndPoint
m_RemoteEndPoint;
750
public /* override */
IPEndPoint
RemoteEndPoint {
760
public /* override */
IPEndPoint
LocalEndPoint {
net\System\Net\Internal.cs (2)
915
return port>=
IPEndPoint
.MinPort && port<=
IPEndPoint
.MaxPort;
net\System\Net\IPEndPoint.cs (8)
20
/// Specifies the minimum acceptable value for the <see cref='System.Net.
IPEndPoint
.Port'/>
27
/// Specifies the maximum acceptable value for the <see cref='System.Net.
IPEndPoint
.Port'/>
38
internal static
IPEndPoint
Any = new IPEndPoint(IPAddress.Any, AnyPort);
39
internal static
IPEndPoint
IPv6Any = new IPEndPoint(IPAddress.IPv6Any,AnyPort);
153
if (!(comparand is
IPEndPoint
)) {
156
return ((
IPEndPoint
)comparand).m_Address.Equals(m_Address) && ((
IPEndPoint
)comparand).m_Port==m_Port;
165
internal
IPEndPoint
Snapshot()
net\System\Net\Logging.cs (1)
282
if (obj is Uri || obj is System.Net.IPAddress || obj is System.Net.
IPEndPoint
) {
net\System\Net\NetworkInformation\IPGlobalProperties.cs (2)
26
public abstract
IPEndPoint
[] GetActiveUdpListeners();
29
public abstract
IPEndPoint
[] GetActiveTcpListeners ();
net\System\Net\NetworkInformation\ping.cs (1)
682
IPEndPoint
ep = new IPEndPoint (address, 0);
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (6)
136
public override
IPEndPoint
[] GetActiveTcpListeners (){
137
List<
IPEndPoint
> list = new List<
IPEndPoint
>();
258
public override
IPEndPoint
[] GetActiveUdpListeners(){
262
List<
IPEndPoint
> udpListeners = new List<
IPEndPoint
>();
net\System\Net\NetworkInformation\SystemTcpConnection.cs (4)
20
IPEndPoint
localEndPoint;
21
IPEndPoint
remoteEndPoint;
53
public override
IPEndPoint
LocalEndPoint{get {return localEndPoint;}}
54
public override
IPEndPoint
RemoteEndPoint{get {return remoteEndPoint;}}
net\System\Net\NetworkInformation\TcpConnection.cs (2)
12
public abstract
IPEndPoint
LocalEndPoint { get;}
15
public abstract
IPEndPoint
RemoteEndPoint { get;}
net\System\Net\ServicePoint.cs (6)
20
public delegate
IPEndPoint
BindIPEndPoint(ServicePoint servicePoint,
IPEndPoint
remoteEndPoint, int retryCount);
1286
private void BindUsingDelegate(Socket socket,
IPEndPoint
remoteIPEndPoint)
1288
IPEndPoint
clonedRemoteIPEndPoint = new IPEndPoint(remoteIPEndPoint.Address, remoteIPEndPoint.Port);
1292
IPEndPoint
localIPEndPoint = BindIPEndPointDelegate(this, clonedRemoteIPEndPoint, retryCount);
1359
IPEndPoint
remoteIPEndPoint;
net\System\Net\SocketAddress.cs (1)
209
internal
IPEndPoint
GetIPEndPoint() {
net\System\Net\Sockets\Socket.cs (17)
222
ep =
IPEndPoint
.Any;
225
ep =
IPEndPoint
.IPv6Any;
863
IPEndPoint
ipSnapshot = localEP as
IPEndPoint
;
940
IPEndPoint
ipEndPoint = endPointSnapshot as
IPEndPoint
;
1058
IPEndPoint
remoteEP = new IPEndPoint(address, port);
2957
(m_RightEndPoint != null || remoteEP.GetType() == typeof(
IPEndPoint
)) &&
5859
IPEndPoint
ipSnapshot = remoteEP as
IPEndPoint
;
5882
private
IPEndPoint
RemapIPEndPoint(
IPEndPoint
input)
5896
IPEndPoint
ipSnapshot = remoteEP as
IPEndPoint
;
6449
IPEndPoint
ipEndPoint = m_RightEndPoint as
IPEndPoint
;
6888
GlobalLog.Assert(endPointSnapshot.GetType() == typeof(
IPEndPoint
), "Socket#{0}::BeginConnectEx()|Socket not bound and endpoint not IPEndPoint.", ValidationHelper.HashString(this));
net\System\Net\Sockets\TCPClient.cs (3)
37
public TcpClient(
IPEndPoint
localEP) {
328
IPEndPoint
remoteEP = new IPEndPoint(address, port);
338
public void Connect(
IPEndPoint
remoteEP) {
net\System\Net\Sockets\TCPListener.cs (2)
20
IPEndPoint
m_ServerSocketEP;
33
public TcpListener(
IPEndPoint
localEP) {
net\System\Net\Sockets\UDPClient.cs (20)
96
IPEndPoint
localEP;
118
public UdpClient(
IPEndPoint
localEP) {
451
IPEndPoint
endPoint = new IPEndPoint(addr, port);
461
public void Connect(
IPEndPoint
endPoint) {
508
public int Send(byte[] dgram, int bytes,
IPEndPoint
endPoint) {
571
IPEndPoint
ipEndPoint = new IPEndPoint(addresses[i], port);
608
public IAsyncResult BeginSend(byte[] datagram, int bytes,
IPEndPoint
endPoint, AsyncCallback requestCallback, object state) {
649
IPEndPoint
ipEndPoint = null;
695
public byte[] Receive(ref
IPEndPoint
remoteEP) {
710
tempRemoteEP =
IPEndPoint
.Any;
713
tempRemoteEP =
IPEndPoint
.IPv6Any;
717
remoteEP = (
IPEndPoint
)tempRemoteEP;
748
tempRemoteEP =
IPEndPoint
.Any;
751
tempRemoteEP =
IPEndPoint
.IPv6Any;
758
public byte[] EndReceive(IAsyncResult asyncResult, ref
IPEndPoint
remoteEP){
766
tempRemoteEP =
IPEndPoint
.Any;
769
tempRemoteEP =
IPEndPoint
.IPv6Any;
773
remoteEP = (
IPEndPoint
)tempRemoteEP;
1012
public Task<int> SendAsync(byte[] datagram, int bytes,
IPEndPoint
endPoint)
1030
IPEndPoint
remoteEP = null;
net\System\Net\Sockets\UdpReceiveResult.cs (3)
17
private
IPEndPoint
m_remoteEndPoint;
19
public UdpReceiveResult(byte[] buffer,
IPEndPoint
remoteEndPoint)
45
public
IPEndPoint
RemoteEndPoint
net\System\Net\UnsafeNativeMethods.cs (12)
3165
internal static
IPEndPoint
GetRemoteEndPoint(byte[] memoryBlob, IntPtr originalAddress)
3179
IPEndPoint
endpoint = null;
3182
endpoint =
IPEndPoint
.Any.Create(v4address) as
IPEndPoint
;
3186
endpoint =
IPEndPoint
.IPv6Any.Create(v6address) as
IPEndPoint
;
3193
internal static
IPEndPoint
GetLocalEndPoint(byte[] memoryBlob, IntPtr originalAddress)
3207
IPEndPoint
endpoint = null;
3210
endpoint =
IPEndPoint
.Any.Create(v4address) as
IPEndPoint
;
3214
endpoint =
IPEndPoint
.IPv6Any.Create(v6address) as
IPEndPoint
;
System.Net (23)
AssemblyInfo.cs (1)
50
[assembly: TypeForwardedToAttribute(typeof(System.Net.
IPEndPoint
))]
net\IPEndPointCollection.cs (3)
14
public class IPEndPointCollection : Collection<
IPEndPoint
>
17
protected override void SetItem(int index,
IPEndPoint
item)
25
protected override void InsertItem(int index,
IPEndPoint
item)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (2)
362
IPEndPoint
IPEndPt = new IPEndPoint(IPAddr, port);
370
internal static PEER_ADDRESS ConvertIPEndpointToPEER_ADDRESS(
IPEndPoint
endPoint)
net\PeerToPeer\Collaboration\PeerEndPoint.cs (6)
70
private
IPEndPoint
m_endPoint;
75
public PeerEndPoint(
IPEndPoint
endPoint):this(endPoint, null)
78
public PeerEndPoint(
IPEndPoint
endPoint, string endPointName)
103
m_endPoint = (
IPEndPoint
)serializationInfo.GetValue("_EndPoint", typeof(
IPEndPoint
));
112
public
IPEndPoint
EndPoint
net\PeerToPeer\PeerNameRecord.cs (1)
173
foreach(
IPEndPoint
ipe in EndPointCollection)
net\PeerToPeer\PeerNameRegistration.cs (4)
106
if (port <
IPEndPoint
.MinPort || port >
IPEndPoint
.MaxPort)
142
if (value <
IPEndPoint
.MinPort || value >
IPEndPoint
.MaxPort)
net\PeerToPeer\PeerNameResolver.cs (2)
336
IPEndPoint
ipe = SystemNetHelpers.IPEndPointFromSOCKADDRBuffer(buffer);
704
IPEndPoint
ipe = SystemNetHelpers.IPEndPointFromSOCKADDRBuffer(buffer);
net\PeerToPeer\SystemNetHelpers.cs (2)
14
internal static byte[] SOCKADDRFromIPEndPoint(
IPEndPoint
ipEndPoint)
58
internal static
IPEndPoint
IPEndPointFromSOCKADDRBuffer(byte[] buffer)
net\UdpAnySourceMulticastClient.cs (2)
29
public IAsyncResult BeginSendTo(byte[] buffer, int offset, int count,
IPEndPoint
remoteEndPoint, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); }
54
public int EndReceiveFromGroup(IAsyncResult result, out
IPEndPoint
source) { throw new SocketException((int)(SocketError.AccessDenied)); }
System.Runtime.Remoting (6)
channels\core\socketmanager.cs (2)
105
IPAddress remoteAddr = ((
IPEndPoint
)NetSocket.RemoteEndPoint).Address;
114
IPAddress remoteAddr = ((
IPEndPoint
)NetSocket.RemoteEndPoint).Address;
channels\http\httpserverchannel.cs (1)
331
_port = ((
IPEndPoint
)_tcpListener.LocalEndpoint).Port;
channels\http\httpstreams.cs (1)
646
headers[CommonTransportKeys.IPAddress] = ((
IPEndPoint
)NetSocket.RemoteEndPoint).Address;
channels\tcp\tcpserverchannel.cs (1)
326
_port = ((
IPEndPoint
)_tcpListener.LocalEndpoint).Port;
channels\tcp\tcpstreams.cs (1)
321
headers.IPAddress = ((
IPEndPoint
)NetSocket.RemoteEndPoint).Address;
System.ServiceModel (57)
System\ServiceModel\Activation\TcpDuplicateContext.cs (1)
14
[KnownType(typeof(
IPEndPoint
))]
System\ServiceModel\Channels\Connection.cs (3)
21
IPEndPoint
RemoteIPEndPoint { get; }
90
public
IPEndPoint
RemoteIPEndPoint
612
public
IPEndPoint
RemoteIPEndPoint
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
30
this.ipAddress = ((
IPEndPoint
)this.listenSocket.LocalEndPoint).Address;
System\ServiceModel\Channels\PeerHelpers.cs (2)
500
public const int MinPort =
IPEndPoint
.MinPort;
501
public const int MaxPort =
IPEndPoint
.MaxPort;
System\ServiceModel\Channels\PipeConnection.cs (1)
140
public
IPEndPoint
RemoteIPEndPoint
System\ServiceModel\Channels\PnrpPeerResolver.cs (18)
100
public static
IPEndPoint
GetHint()
381
Array.ForEach(input.Addresses, delegate(
IPEndPoint
obj) { addresses.Add(obj.Address); });
424
void TrimToMaxAddresses(List<
IPEndPoint
> addressList)
499
global.Addresses = new
IPEndPoint
[0];
513
tempLink.Addresses = new
IPEndPoint
[0];
532
tempSite.Addresses = new
IPEndPoint
[0];
602
entry.addressList = new List<
IPEndPoint
>();
726
public
IPEndPoint
[] Addresses;
727
public List<
IPEndPoint
> addressList;
735
reg.addressList = new List<
IPEndPoint
>();
1070
public
IPEndPoint
LocalAddr;
1071
public
IPEndPoint
RemoteAddr;
1247
public static SOCKET_ADDRESS_SAFE SocketAddressFromIPEndPoint(
IPEndPoint
endpoint)
1877
IPEndPoint
hint = PnrpPeerResolver.GetHint();
2017
IPEndPoint
hint = PnrpPeerResolver.GetHint();
2100
pnrpRegistration.Addresses = new
IPEndPoint
[querySet.CsAddrInfos.Length];
2219
static
IPEndPoint
IPEndPointFromSocketAddress(SOCKET_ADDRESS_NATIVE socketAddress, uint scopeId)
2221
IPEndPoint
endPoint = null;
System\ServiceModel\Channels\RemoteEndpointMessageProperty.cs (6)
13
IPEndPoint
remoteEndPoint;
25
if (port <
IPEndPoint
.MinPort || port >
IPEndPoint
.MaxPort)
28
SR.GetString(SR.ValueMustBeInRange,
IPEndPoint
.MinPort,
IPEndPoint
.MaxPort));
41
internal RemoteEndpointMessageProperty(
IPEndPoint
remoteEndPoint)
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
1089
IPEndPoint
remoteEndPoint = this.rawConnection.RemoteIPEndPoint;
System\ServiceModel\Channels\SharedConnectionListener.cs (2)
1056
this.ipAddress = ((
IPEndPoint
)socket.LocalEndPoint).Address;
1057
this.port = ((
IPEndPoint
)socket.LocalEndPoint).Port;
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
1020
IPEndPoint
remoteEndPoint = this.rawConnection.RemoteIPEndPoint;
System\ServiceModel\Channels\SocketConnection.cs (14)
73
IPEndPoint
remoteEndpoint;
142
public
IPEndPoint
RemoteIPEndPoint
151
remoteEndpoint = (
IPEndPoint
)socket.RemoteEndPoint;
225
IPEndPoint
local, remote;
633
bool TryGetEndpoints(out
IPEndPoint
localIPEndpoint, out
IPEndPoint
remoteIPEndpoint)
642
remoteIPEndpoint = this.remoteEndpoint ?? (
IPEndPoint
)this.socket.RemoteEndPoint;
643
localIPEndpoint = (
IPEndPoint
)this.socket.LocalEndPoint;
824
IPEndPoint
remoteEndpoint = null;
825
IPEndPoint
localEndpoint = null;
1876
IPEndPoint
ipEndPoint = new IPEndPoint(addresses[currentIndex], port);
1973
IPEndPoint
localEndpoint;
1988
public SocketConnectionListener(
IPEndPoint
localEndpoint, ISocketListenerSettings settings, bool useOnlyOverlappedIO)
2141
public static Exception ConvertListenException(SocketException socketException,
IPEndPoint
localEndpoint)
System\ServiceModel\Channels\TcpChannelListener.cs (3)
312
Socket ListenAndBind(
IPEndPoint
localEndpoint)
367
port = ((
IPEndPoint
)this.ipv4ListenSocket.LocalEndPoint).Port;
372
port = ((
IPEndPoint
)this.ipv6ListenSocket.LocalEndPoint).Port;
System\ServiceModel\Configuration\DefaultPortElement.cs (2)
38
[IntegerValidator(MinValue =
IPEndPoint
.MinPort, MaxValue =
IPEndPoint
.MaxPort)]
System\ServiceModel\Diagnostics\PeerNodeTraceRecord.cs (1)
384
foreach (
IPEndPoint
address in entry.Addresses)
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
1269
internal static string GetRemoteEndpointAddressPort(Net.
IPEndPoint
iPEndPoint)
System.ServiceModel.Channels (23)
System\ServiceModel\Channels\ClientUdpOutputChannel.cs (3)
23
public ClientUdpOutputChannel(ChannelManagerBase factory,
IPEndPoint
remoteEndPoint, MessageEncoder encoder, BufferManager bufferManager, UdpSocket[] sendSockets, UdpRetransmissionSettings retransmissionSettings, EndpointAddress to, Uri via, bool isMulticast)
33
public
IPEndPoint
RemoteEndPoint
39
protected override UdpSocket[] GetSendSockets(Message message, out
IPEndPoint
remoteEndPoint, out Exception exceptionToBeThrown)
System\ServiceModel\Channels\ServerUdpOutputChannel.cs (4)
98
protected override UdpSocket[] GetSendSockets(Message message, out
IPEndPoint
remoteEndPoint, out Exception exceptionToBeThrown)
291
if (destination.Port < 1 || destination.Port >
IPEndPoint
.MaxPort)
295
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.ViaUriIsNotValid(destination, SR.PortNumberInvalid(1,
IPEndPoint
.MaxPort))));
299
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.ToAddressIsNotValid(destination, SR.PortNumberInvalid(1,
IPEndPoint
.MaxPort))));
System\ServiceModel\Channels\UdpChannelBase.cs (2)
149
IPEndPoint
remoteIPEndPoint = (
IPEndPoint
)remoteEndpoint;
System\ServiceModel\Channels\UdpChannelFactory.cs (4)
105
IPEndPoint
remoteEndPoint = null;
152
UdpSocket[] GetSockets(Uri via, out
IPEndPoint
remoteEndPoint, out bool isMulticast)
280
internal ClientUdpDuplexChannel(UdpChannelFactory<IDuplexChannel> factory, UdpSocket[] sockets,
IPEndPoint
remoteEndPoint, EndpointAddress localAddress, EndpointAddress to, Uri via, bool isMulticast)
327
public
IPEndPoint
RemoteEndPoint
System\ServiceModel\Channels\UdpChannelListener.cs (2)
179
IPEndPoint
remoteIPEndPoint = (
IPEndPoint
)remoteEndpoint;
System\ServiceModel\Channels\UdpOutputChannel.cs (4)
206
IPEndPoint
remoteEndPoint;
290
protected abstract UdpSocket[] GetSendSockets(Message message, out
IPEndPoint
remoteEndPoint, out Exception exceptionToBeThrown);
414
private void TransmitMessage(ArraySegment<byte> messageBytes, UdpSocket[] sockets,
IPEndPoint
remoteEndpoint, TimeoutHelper timeoutHelper)
641
private
IPEndPoint
remoteEndpoint;
System\ServiceModel\Channels\UdpUtility.cs (4)
115
IPEndPoint
localEndpoint;
138
port = ((
IPEndPoint
)socket.LocalEndPoint).Port;
422
static void BindSocket(Socket socket,
IPEndPoint
localEndpoint)
535
public static Message DecodeMessage(DuplicateMessageDetector duplicateDetector, MessageEncoder encoder, BufferManager bufferManager, ArraySegment<byte> data,
IPEndPoint
remoteEndPoint, int interfaceIndex, bool ignoreSerializationException, out string messageHash)