ErrorCode和SocketErrorCode是否总是相同的值,但表示为不同的类型?
SocketException class description给出了大致相同的描述,但我没有看到任何明确的说明它们是相同的值。
SocketErrorCode似乎更有用,因为它是一个枚举,你可以制作更漂亮的代码,如:
if(se.SocketErrorCode == SocketError.Interrupted)
而不是:
if (se.ErrorCode != 10004)
或
if (se.ErrorCode != (int)SocketError.Interrupted)
答案 0 :(得分:3)
是的,它们完全一样。
public override int ErrorCode {
//
// the base class returns the HResult with this property
// we need the Win32 Error Code, hence the override.
//
get {
return NativeErrorCode;
}
}
public SocketError SocketErrorCode {
//
// the base class returns the HResult with this property
// we need the Win32 Error Code, hence the override.
//
get {
return (SocketError)NativeErrorCode;
}
}