69 references to WebSocketError
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (3)
101new WebSocketException(WebSocketError.ConnectionClosedPrematurely).Message); 158case WebSocketError.UnsupportedVersion: 160case WebSocketError.UnsupportedProtocol:
Microsoft.AspNetCore.Http.Connections (1)
Internal\Transports\WebSocketsServerTransport.cs (1)
173catch (WebSocketException ex) when (ex.WebSocketErrorCode == WebSocketError.ConnectionClosedPrematurely)
Microsoft.AspNetCore.Http.Connections.Tests (3)
TestWebSocketConnectionFeature.cs (2)
91_output.TryComplete(new WebSocketException(WebSocketError.ConnectionClosedPrematurely)); 177case WebSocketError.ConnectionClosedPrematurely:
WebSocketsTests.cs (1)
137Assert.IsType<WebSocketError>(ex);
Microsoft.AspNetCore.WebSockets.Tests (1)
SendReceiveTests.cs (1)
101Assert.Equal(WebSocketError.ConnectionClosedPrematurely, ex.WebSocketErrorCode);
netstandard (1)
netstandard.cs (1)
1315[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.WebSocketError))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
806[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.WebSocketError))]
System.Net.HttpListener (7)
src\libraries\Common\src\System\Net\WebSockets\WebSocketValidate.cs (1)
60WebSocketError.InvalidState,
System\Net\WebSockets\HttpWebSocket.cs (6)
41throw new WebSocketException(WebSocketError.UnsupportedProtocol, 73throw new WebSocketException(WebSocketError.UnsupportedProtocol, 108throw new WebSocketException(WebSocketError.NotAWebSocket, 120throw new WebSocketException(WebSocketError.HeaderError, 128throw new WebSocketException(WebSocketError.UnsupportedVersion, 151throw new WebSocketException(WebSocketError.HeaderError,
System.Net.WebSockets (38)
src\libraries\Common\src\System\Net\WebSockets\WebSocketValidate.cs (1)
60WebSocketError.InvalidState,
System\Net\WebSockets\ManagedWebSocket.cs (11)
473new WebSocketException(WebSocketError.ConnectionClosedPrematurely, exc)); 501new WebSocketException(WebSocketError.ConnectionClosedPrematurely, exc); 526new WebSocketException(WebSocketError.ConnectionClosedPrematurely, exc); 756await CloseWithReceiveErrorAndThrowAsync(WebSocketCloseStatus.ProtocolError, WebSocketError.Faulted, headerErrorMessage).ConfigureAwait(false); 881await CloseWithReceiveErrorAndThrowAsync(WebSocketCloseStatus.InvalidPayloadData, WebSocketError.Faulted).ConfigureAwait(false); 909throw new WebSocketException(WebSocketError.ConnectionClosedPrematurely, exc); 960await CloseWithReceiveErrorAndThrowAsync(WebSocketCloseStatus.ProtocolError, WebSocketError.Faulted).ConfigureAwait(false); 977await CloseWithReceiveErrorAndThrowAsync(WebSocketCloseStatus.ProtocolError, WebSocketError.Faulted).ConfigureAwait(false); 988await CloseWithReceiveErrorAndThrowAsync(WebSocketCloseStatus.ProtocolError, WebSocketError.Faulted, innerException: exc).ConfigureAwait(false); 1115WebSocketCloseStatus closeStatus, WebSocketError error, string? errorMessage = null, Exception? innerException = null) 1433throw new WebSocketException(WebSocketError.ConnectionClosedPrematurely);
System\Net\WebSockets\WebSocket.cs (1)
107throw new WebSocketException(WebSocketError.InvalidState, SR.Format(SR.net_WebSockets_InvalidState, state, validStatesText));
System\Net\WebSockets\WebSocketException.cs (25)
15private readonly WebSocketError _webSocketErrorCode; 22public WebSocketException(WebSocketError error) 27public WebSocketException(WebSocketError error, string? message) : base(message ?? SR.net_WebSockets_Generic) 32public WebSocketException(WebSocketError error, Exception? innerException) 37public WebSocketException(WebSocketError error, string? message, Exception? innerException) 46_webSocketErrorCode = !Succeeded(nativeError) ? WebSocketError.NativeError : WebSocketError.Success; 53_webSocketErrorCode = !Succeeded(nativeError) ? WebSocketError.NativeError : WebSocketError.Success; 60_webSocketErrorCode = !Succeeded(nativeError) ? WebSocketError.NativeError : WebSocketError.Success; 64public WebSocketException(WebSocketError error, int nativeError) 69public WebSocketException(WebSocketError error, int nativeError, string? message) 76public WebSocketException(WebSocketError error, int nativeError, Exception? innerException) 81public WebSocketException(WebSocketError error, int nativeError, string? message, Exception? innerException) 121public WebSocketError WebSocketErrorCode 129private static string GetErrorMessage(WebSocketError error) => 133WebSocketError.InvalidMessageType => SR.Format(SR.net_WebSockets_InvalidMessageType_Generic, 136WebSocketError.Faulted => SR.net_Websockets_WebSocketBaseFaulted, 137WebSocketError.NotAWebSocket => SR.net_WebSockets_NotAWebSocket_Generic, 138WebSocketError.UnsupportedVersion => SR.net_WebSockets_UnsupportedWebSocketVersion_Generic, 139WebSocketError.UnsupportedProtocol => SR.net_WebSockets_UnsupportedProtocol_Generic, 140WebSocketError.HeaderError => SR.net_WebSockets_HeaderError_Generic, 141WebSocketError.ConnectionClosedPrematurely => SR.net_WebSockets_ConnectionClosedPrematurely_Generic, 142WebSocketError.InvalidState => SR.net_WebSockets_InvalidState_Generic,
System.Net.WebSockets.Client (11)
src\libraries\Common\src\System\Net\WebSockets\WebSocketValidate.cs (1)
60WebSocketError.InvalidState,
System\Net\WebSockets\WebSocketHandle.Managed.cs (10)
85throw new WebSocketException(WebSocketError.UnsupportedProtocol); 97throw new WebSocketException(WebSocketError.UnsupportedProtocol); 171WebSocketError.UnsupportedProtocol, 221throw new WebSocketException(WebSocketError.Faulted, SR.net_webstatus_ConnectFailure, exc); 346throw new WebSocketException(WebSocketError.HeaderError, 454throw new WebSocketException(WebSocketError.NotAWebSocket, SR.Format(SR.net_WebSockets_ConnectStatusExpected, (int)response.StatusCode, (int)HttpStatusCode.SwitchingProtocols)); 468throw new WebSocketException(WebSocketError.NotAWebSocket, SR.Format(SR.net_WebSockets_ConnectStatusExpected, (int)response.StatusCode, (int)HttpStatusCode.OK)); 474throw new WebSocketException(WebSocketError.ConnectionClosedPrematurely); 526throw new WebSocketException(WebSocketError.HeaderError, SR.Format(SR.net_WebSockets_InvalidResponseHeader, name, hsv)); 529throw new WebSocketException(WebSocketError.Faulted, SR.Format(SR.net_WebSockets_MissingResponseHeader, name));
System.ServiceModel.Http (3)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (3)
85new WebSocketException(WebSocketError.ConnectionClosedPrematurely).Message); 258case WebSocketError.UnsupportedVersion: 260case WebSocketError.UnsupportedProtocol: