10 writes to m_CompletedOperation
System (10)
net\System\Net\Sockets\Socket.cs (10)
9056
m_CompletedOperation
= SocketAsyncOperation.Accept;
9091
m_CompletedOperation
= SocketAsyncOperation.Connect;
9106
m_CompletedOperation
= SocketAsyncOperation.Connect;
9129
m_CompletedOperation
= SocketAsyncOperation.Disconnect;
9135
m_CompletedOperation
= SocketAsyncOperation.Receive;
9151
m_CompletedOperation
= SocketAsyncOperation.ReceiveFrom;
9170
m_CompletedOperation
= SocketAsyncOperation.ReceiveMessageFrom;
9247
m_CompletedOperation
= SocketAsyncOperation.Send;
9263
m_CompletedOperation
= SocketAsyncOperation.SendPackets;
9343
m_CompletedOperation
= SocketAsyncOperation.SendTo;
8 references to m_CompletedOperation
System (8)
net\System\Net\Sockets\Socket.cs (8)
8803
get { return
m_CompletedOperation
; }
9112
if (m_Operating == InProgress &&
m_CompletedOperation
== SocketAsyncOperation.Connect) {
9677
Logging.Dump(Logging.Sockets, m_CurrentSocket, "FinishOperation(" +
m_CompletedOperation
+ "Async)", m_AcceptBuffer, 0, size);
9680
Logging.Dump(Logging.Sockets, m_CurrentSocket, "FinishOperation(" +
m_CompletedOperation
+ "Async)", m_Buffer, m_Offset, size);
9684
Logging.Dump(Logging.Sockets, m_CurrentSocket, "FinishOperation(" +
m_CompletedOperation
+ "Async)", wsaBuffer.Pointer, Math.Min(wsaBuffer.Length, size));
9699
Logging.Dump(Logging.Sockets, m_CurrentSocket, "FinishOperation(" +
m_CompletedOperation
+ "Async)Buffer", spe.m_Buffer, spe.m_Offset, Math.Min(spe.m_Count, size));
9702
Logging.PrintInfo(Logging.Sockets, m_CurrentSocket, "FinishOperation(" +
m_CompletedOperation
+ "Async)", SR.GetString(SR.net_log_socket_not_logged_file, spe.m_FilePath));
9796
switch(
m_CompletedOperation
) {