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