1 write to CloseStatusDescription
System.Net.WebSockets (1)
System\Net\WebSockets\WebSocketReceiveResult.cs (1)
27
CloseStatusDescription
= closeStatusDescription;
14 references to CloseStatusDescription
AutobahnTestApp (1)
Startup.cs (1)
48
await webSocket.CloseAsync(result.CloseStatus.Value, result.
CloseStatusDescription
, cancellationToken);
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (1)
717
_closeDetails.InputCloseStatusDescription = result.
CloseStatusDescription
;
InProcessWebSite (1)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.WebSockets.cs (1)
189
await webSocket.CloseAsync(result.CloseStatus.Value, result.
CloseStatusDescription
, CancellationToken.None);
Microsoft.AspNetCore.Owin (1)
WebSockets\WebSocketAdapter.cs (1)
83
_environment[OwinConstants.WebSocket.ClientCloseDescription] = nativeResult.
CloseStatusDescription
?? string.Empty;
Microsoft.AspNetCore.TestHost.Tests (1)
TestClientTests.cs (1)
688
Assert.Equal("Normal Closure", result.
CloseStatusDescription
);
Microsoft.AspNetCore.WebSockets.Tests (9)
WebSocketMiddlewareTests.cs (9)
358
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
392
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
414
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
416
await webSocket.CloseAsync(result.CloseStatus.Value, result.
CloseStatusDescription
, CancellationToken.None);
444
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
446
await webSocket.CloseAsync(result.CloseStatus.Value, result.
CloseStatusDescription
, CancellationToken.None);
478
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
490
Assert.Equal(closeDescription, result.
CloseStatusDescription
);
494
await client.CloseAsync(result.CloseStatus.Value, result.
CloseStatusDescription
, CancellationToken.None);