7 overrides of CloseStatusDescription
Microsoft.AspNetCore.Http.Connections.Tests (1)
TestWebSocketConnectionFeature.cs (1)
77public override string CloseStatusDescription => _closeStatusDescription;
Microsoft.AspNetCore.Owin (1)
WebSockets\OwinWebSocketAdapter.cs (1)
70public override string CloseStatusDescription
Microsoft.AspNetCore.SignalR.Client.Tests (1)
WebSocketsTransportTests.cs (1)
47public override string CloseStatusDescription => string.Empty;
Microsoft.AspNetCore.TestHost (1)
TestWebSocket.cs (1)
31public override string? CloseStatusDescription
Microsoft.AspNetCore.WebSockets (1)
ServerWebSocket.cs (1)
29public override string? CloseStatusDescription => _wrappedSocket.CloseStatusDescription;
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.cs (1)
252public override string? CloseStatusDescription => _closeStatusDescription;
System.Net.WebSockets.Client (1)
System\Net\WebSockets\ClientWebSocket.cs (1)
28public override string? CloseStatusDescription => _innerWebSocket?.WebSocket?.CloseStatusDescription;
4 references to CloseStatusDescription
Microsoft.AspNetCore.Owin (1)
WebSockets\WebSocketAdapter.cs (1)
129_webSocket.CloseStatusDescription ?? string.Empty, _cancellationToken);
Microsoft.AspNetCore.SpaServices.Extensions (1)
Proxying\SpaProxy.cs (1)
304await destination.CloseOutputAsync(source.CloseStatus!.Value, source.CloseStatusDescription, cancellationToken);
Microsoft.AspNetCore.WebSockets (1)
ServerWebSocket.cs (1)
29public override string? CloseStatusDescription => _wrappedSocket.CloseStatusDescription;
System.Net.WebSockets.Client (1)
System\Net\WebSockets\ClientWebSocket.cs (1)
28public override string? CloseStatusDescription => _innerWebSocket?.WebSocket?.CloseStatusDescription;