Base:
property
Message
System.Exception.Message
1 override of Message
System.ServiceModel (1)
System\ServiceModel\Channels\PnrpPeerResolver.cs (1)
852public override string Message
19 references to Message
System (5)
net\System\Net\DNS.cs (2)
523if (Logging.On) Logging.PrintWarning(Logging.Sockets, "DNS", "DNS.Resolve", ex.Message); 1045if (Logging.On) Logging.PrintWarning(Logging.Sockets, "DNS", "DNS.EndResolve", ex.Message);
net\System\Net\SocketException.cs (3)
30GlobalLog.Print("SocketException::.ctor() " + NativeErrorCode.ToString() + ":" + Message); 43GlobalLog.Print("SocketException::.ctor(int) " + NativeErrorCode.ToString() + ":" + Message); 61GlobalLog.Print("SocketException::.ctor(serialized) " + NativeErrorCode.ToString() + ":" + Message);
System.ServiceModel (13)
System\ServiceModel\Channels\PnrpPeerResolver.cs (1)
859return base.Message;
System\ServiceModel\Channels\SocketConnection.cs (12)
721return new CommunicationObjectAbortedException(socketException.Message, socketException); 790return new CommunicationObjectAbortedException(SR.GetString(SR.TcpTransferError, socketException.ErrorCode, socketException.Message), originalException); 794CommunicationException communicationException = new CommunicationException(SR.GetString(SR.TcpTransferError, socketException.ErrorCode, socketException.Message), originalException); 844? SR.GetString(SR.TcpTransferErrorWithIP, socketException.ErrorCode, socketException.Message, localEndpoint, remoteEndpoint) 845: SR.GetString(SR.TcpTransferError, socketException.ErrorCode, socketException.Message); 1585return new CommunicationObjectAbortedException(socketException.Message, socketException); 1598return new EndpointNotFoundException(SR.GetString(SR.TcpConnectError, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message), innerException); 1602return new EndpointNotFoundException(SR.GetString(SR.TcpConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message, timeSpent), innerException); 1619return new CommunicationException(SR.GetString(SR.TcpConnectError, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message), innerException); 1623return new CommunicationException(SR.GetString(SR.TcpConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message, timeSpent), innerException); 2145return new CommunicationObjectAbortedException(socketException.Message, socketException); 2154SR.GetString(SR.TcpListenError, socketException.ErrorCode, socketException.Message, localEndpoint.ToString()),
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpSocket.cs (1)
228result = new CommunicationObjectAbortedException(socketException.Message, socketException);