System.Net.Mail.SmtpClient.IsUnicodeSupported C# (CSharp) 메소드

IsUnicodeSupported() 개인적인 메소드

private IsUnicodeSupported ( ) : bool
리턴 bool
        private bool IsUnicodeSupported()
        {
            if (DeliveryMethod == SmtpDeliveryMethod.Network)
            {
                return (ServerSupportsEai && (DeliveryFormat == SmtpDeliveryFormat.International));
            }
            else
            { // Pickup directories
                return (DeliveryFormat == SmtpDeliveryFormat.International);
            }
        }