10 references to ServerAddress
System.Net.Requests (10)
System\Net\FtpControlStream.cs (10)
112
if (!connection.
ServerAddress
.Equals(((IPEndPoint)connection._dataSocket.RemoteEndPoint!).Address))
601
string passiveCommand = (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6) ? "PASV" : "EPSV";
606
string portCommand = (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6) ? "PORT" : "EPRT";
711
_passiveEndPoint = new IPEndPoint(
ServerAddress
, port);
747
if (!
ServerAddress
.Equals(((IPEndPoint)_dataSocket.RemoteEndPoint!).Address))
1128
if (
ServerAddress
.AddressFamily == AddressFamily.InterNetwork ||
ServerAddress
.IsIPv4MappedToIPv6)
1132
else if (
ServerAddress
.AddressFamily == AddressFamily.InterNetworkV6)