System.Net.Mail.SmtpException.GetMessageForStatus C# (CSharp) Method

GetMessageForStatus() private static method

private static GetMessageForStatus ( SmtpStatusCode statusCode, string serverResponse ) : string
statusCode SmtpStatusCode
serverResponse string
return string
        private static string GetMessageForStatus(SmtpStatusCode statusCode, string serverResponse)
        {
            return GetMessageForStatus(statusCode) + " " + SR.Format(SR.MailServerResponse, serverResponse);
        }

Same methods

SmtpException::GetMessageForStatus ( SmtpStatusCode statusCode ) : string