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