1 write to CloseStatus
System (1)
net\System\Net\WebSockets\WebSocketReceiveResult.cs (1)
31this.CloseStatus = closeStatus;
7 references to CloseStatus
System (3)
net\System\Net\WebSockets\WebSocketBase.cs (2)
1690Contract.Assert(ReceiveResult.CloseStatus != null, "'receiveResult.CloseStatus' MUST NOT be NULL for message type 'Close'."); 1721m_WebSocket.FinishOnCloseReceived(ReceiveResult.CloseStatus.Value, ReceiveResult.CloseStatusDescription);
net\System\Net\WebSockets\WebSocketReceiveResult.cs (1)
49this.CloseStatus,
System.ServiceModel (2)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (2)
823result.CloseStatus.ToString()); 827this.closeDetails.InputCloseStatus = result.CloseStatus;
System.Web (2)
WebSockets\AspNetWebSocket.cs (2)
403Debug.Assert(result.CloseStatus.HasValue, "The CloseStatus property should be non-null when a CLOSE frame is received."); 404_closeStatus = result.CloseStatus.Value;