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