3 overrides of CloseAsync
System (2)
net\System\Net\WebSockets\ClientWebSocket.cs (1)
335
public override Task
CloseAsync
(WebSocketCloseStatus closeStatus, string statusDescription,
net\System\Net\WebSockets\WebSocketBase.cs (1)
754
public override Task
CloseAsync
(WebSocketCloseStatus closeStatus,
System.Web (1)
WebSockets\AspNetWebSocket.cs (1)
221
public override Task
CloseAsync
(WebSocketCloseStatus closeStatus, string statusDescription, CancellationToken cancellationToken) {
2 references to CloseAsync
System (1)
net\System\Net\WebSockets\ClientWebSocket.cs (1)
339
return innerWebSocket.
CloseAsync
(closeStatus, statusDescription, cancellationToken);
System.ServiceModel (1)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (1)
416
return this.WebSocket.
CloseAsync
(this.webSocketCloseDetails.OutputCloseStatus, this.webSocketCloseDetails.OutputCloseStatusDescription, CancellationToken.None);