18 references to TimedOut
Microsoft.Extensions.Diagnostics.ExceptionSummarization.Tests (2)
ExceptionSummarizerTests.cs (2)
185
var exception = new Exception("test", new SocketException((int)SocketError.
TimedOut
));
186
var descriptionIndex = _httpDescriptions.FindIndex(x => x.Equals(SocketError.
TimedOut
.ToString()));
Microsoft.TestPlatform.CommunicationUtilities (2)
SocketCommunicationManager.cs (1)
376
&& socketException.SocketErrorCode == SocketError.
TimedOut
)
TcpClientExtensions.cs (1)
73
&& socketException.SocketErrorCode == SocketError.
TimedOut
)
System.Net.Ping (4)
src\runtime\src\libraries\Common\src\System\Net\Sockets\SocketErrorPal.Unix.cs (2)
63
Interop.Error.ETIMEDOUT => SocketError.
TimedOut
,
111
SocketError.
TimedOut
=> Interop.Error.ETIMEDOUT,
System\Net\NetworkInformation\Ping.RawSocket.cs (2)
278
catch (SocketException ex) when (ex.SocketErrorCode == SocketError.
TimedOut
)
363
catch (SocketException ex) when (ex.SocketErrorCode == SocketError.
TimedOut
)
System.Net.Primitives (2)
src\runtime\src\libraries\Common\src\System\Net\Sockets\SocketErrorPal.Unix.cs (2)
63
Interop.Error.ETIMEDOUT => SocketError.
TimedOut
,
111
SocketError.
TimedOut
=> Interop.Error.ETIMEDOUT,
System.Net.Requests (1)
System\Net\FtpWebRequest.cs (1)
920
sEx.SocketErrorCode == SocketError.
TimedOut
)
System.Net.Sockets (7)
src\runtime\src\libraries\Common\src\System\Net\Sockets\SocketErrorPal.Unix.cs (2)
63
Interop.Error.ETIMEDOUT => SocketError.
TimedOut
,
111
SocketError.
TimedOut
=> Interop.Error.ETIMEDOUT,
System\Net\Sockets\Socket.cs (1)
3948
errorCode != SocketError.
TimedOut
&& errorCode != SocketError.OperationAborted)))
System\Net\Sockets\SocketAsyncContext.Unix.cs (2)
1448
operation.ErrorCode = SocketError.
TimedOut
;
1462
errorCode = SocketError.
TimedOut
;
System\Net\Sockets\SocketPal.Unix.cs (1)
1029
errorCode = SocketError.
TimedOut
;
System\Net\Sockets\SocketsTelemetry.cs (1)
260
SocketError.
TimedOut
=> "timed_out",