4 references to RawErrno
System.Net.Primitives (4)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
145
return Interop.Sys.StrError(
RawErrno
);
150
return $"RawErrno: {
RawErrno
} Error: {Error} GetErrorMessage: {GetErrorMessage()}"; // No localization required; text is member names used for debugging purposes
System\Net\SocketException.Unix.cs (2)
20
private SocketException(Interop.ErrorInfo error) : this(SocketErrorPal.GetSocketErrorForNativeError(error.Error), (uint)error.
RawErrno
)
31
nativeErr = interopErr.Info().
RawErrno
;