10 references to ServerAddress
System.Net.Requests (10)
System\Net\FtpControlStream.cs (10)
112
if (!connection.
ServerAddress
.Equals(((IPEndPoint)connection._dataSocket.RemoteEndPoint!).Address))
599
string passiveCommand = (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6) ? "PASV" : "EPSV";
604
string portCommand = (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6) ? "PORT" : "EPRT";
709
_passiveEndPoint = new IPEndPoint(
ServerAddress
, port);
745
if (!
ServerAddress
.Equals(((IPEndPoint)_dataSocket.RemoteEndPoint!).Address))
1126
if (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6)
1130
else if (
ServerAddress
.AddressFamily == AddressFamily.InterNetworkV6)