6 overrides of CloseStatusDescription
Microsoft.AspNetCore.Owin (1)
WebSockets\OwinWebSocketAdapter.cs (1)
70public override string CloseStatusDescription
Microsoft.AspNetCore.TestHost (1)
TestWebSocket.cs (1)
31public override string? CloseStatusDescription
System.Net.HttpListener (1)
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
103public override string? CloseStatusDescription => _inner.CloseStatusDescription;
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.cs (1)
291public override string? CloseStatusDescription => _closeStatusDescription;
System.Net.WebSockets.Client (2)
System\Net\WebSockets\BrowserWebSockets\BrowserWebSocket.cs (1)
102public override string? CloseStatusDescription
System\Net\WebSockets\ClientWebSocket.cs (1)
27public 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);
System.Net.HttpListener (1)
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
103public override string? CloseStatusDescription => _inner.CloseStatusDescription;
System.Net.WebSockets.Client (1)
System\Net\WebSockets\ClientWebSocket.cs (1)
27public override string? CloseStatusDescription => _innerWebSocket?.WebSocket?.CloseStatusDescription;