2 types derived from WebSocketOperation
System (2)
net\System\Net\WebSockets\WebSocketBase.cs (2)
1885public class ReceiveOperation : WebSocketOperation 2063public class SendOperation : WebSocketOperation
9 references to WebSocketOperation
System (9)
net\System\Net\WebSockets\WebSocketBase.cs (9)
61private volatile WebSocketOperation.ReceiveOperation m_ReceiveOperation; 62private volatile WebSocketOperation.SendOperation m_SendOperation; 63private volatile WebSocketOperation.SendOperation m_KeepAliveOperation; 64private volatile WebSocketOperation.CloseOutputOperation m_CloseOutputOperation; 1117m_ReceiveOperation = new WebSocketOperation.ReceiveOperation(this); 1131m_SendOperation = new WebSocketOperation.SendOperation(this); 1145WebSocketOperation.SendOperation keepAliveOperation = new WebSocketOperation.SendOperation(this); 1161m_CloseOutputOperation = new WebSocketOperation.CloseOutputOperation(this);