3 writes to WebSocket
System.ServiceModel (3)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (2)
367this.WebSocket = clientWebSocket = this.CreateWebSocketWithFactory(); 374this.WebSocket = clientWebSocket = WebSocket.CreateClientWebSocket(
System\ServiceModel\Channels\ServerWebSocketTransportDuplexSessionChannel.cs (1)
67this.WebSocket = webSocketContext.WebSocket;
22 references to WebSocket
System.ServiceModel (22)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (5)
98this.WebSocket != null ? this.WebSocket.GetHashCode() : -1); 148this.WebSocket != null ? this.WebSocket.GetHashCode() : -1); 425this.WebSocket,
System\ServiceModel\Channels\ServerWebSocketTransportDuplexSessionChannel.cs (4)
106this.WebSocket != null ? this.WebSocket.GetHashCode() : -1); 128this.WebSocket != null ? this.WebSocket.GetHashCode() : -1);
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (13)
133this.WebSocket != null ? this.WebSocket.GetHashCode() : -1); 154this.WebSocket.GetHashCode(), 164TD.WebSocketConnectionClosed(this.WebSocket.GetHashCode()); 179this.WebSocket.GetHashCode(), 215this.WebSocket.GetHashCode(), 220Task task = this.WebSocket.SendAsync(messageData, outgoingMessageType, true, cancellationTokenSource.Token); 263WebSocketStream webSocketStream = new WebSocketStream(this.WebSocket, outgoingMessageType, helper.RemainingTime()); 323WebSocketStream webSocketStream = new WebSocketStream(this.WebSocket, outgoingMessageType, helper.RemainingTime()); 337this.WebSocket.GetHashCode(), 342Task task = this.WebSocket.SendAsync(messageData, outgoingMessageType, true, CancellationToken.None); 416return this.WebSocket.CloseAsync(this.webSocketCloseDetails.OutputCloseStatus, this.webSocketCloseDetails.OutputCloseStatusDescription, CancellationToken.None); 434return this.WebSocket.CloseOutputAsync(this.webSocketCloseDetails.OutputCloseStatus, this.webSocketCloseDetails.OutputCloseStatusDescription, cancellationToken);