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