CA2000 и возвращенный объект Socket: как решить?
У меня есть следующая функция:
public static Socket ConnectSocket(string srvName, int srvPort)
{
Socket tempSocket = null;
IPHostEntry hostEntry = null;
try
{
hostEntry = Dns.GetHostEntry(srvName);
//// Loop through the AddressList to obtain the supported AddressFamily. This is to avoid
//// an exception that occurs when the host IP Address is not compatible with the address family
//// (typical in the IPv6 case).
foreach (IPAddress address in hostEntry.AddressList)
{
IPEndPoint ipe = new IPEndPoint(address, srvPort);
if (!ipe.AddressFamily.Equals(AddressFamily.InterNetwork))
continue;
tempSocket = new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
tempSocket.Connect(ipe);
if (tempSocket.Connected)
{
return tempSocket;
}
tempSocket.Close();
}
throw new ConnectionThruAddressFamilyFailedException();
}
finally
{
//I can't close socket here because I want to use it next
}
}
И у меня, очевидно, есть предупреждение CA2000 (Утилизировать объекты перед потерей области видимости) во время анализа кода. Возвращенный сокет затем используется для связи с сервером. Поэтому я не могу избавиться от этого здесь. Даже если я выберу этот объект позже, у меня будет CA2000.
Как это решить?
1 ответ
Решение
Если что-то выдает исключение, вы не возвращаете ни сокет, ни Close
/ Dispose
Это.
Пытаться:
try
{
tempSocket = new Socket(ipe.AddressFamily, SocketType.Stream,
ProtocolType.Tcp);
tempSocket.Connect(ipe);
if (tempSocket.Connected)
{
return tempSocket;
}
tempSocket.Close();
tempSocket = null;
}
catch (Exception)
{
if (tempSocket != null)
tempSocket.Close();
throw;
}