* Fix an incorrect namespace for copy auth url request. * Implemented SSL handshake process for testing imap configuration. * Implemented SSL handshake process for testing imap configuration. * Replace certificate PathIcon with WinoFontIcon in XAML.
18 lines
563 B
C#
18 lines
563 B
C#
namespace Wino.Core.Domain.Exceptions
|
|
{
|
|
public class ImapTestSSLCertificateException : System.Exception
|
|
{
|
|
public ImapTestSSLCertificateException(string issuer, string expirationDateString, string validFromDateString)
|
|
{
|
|
Issuer = issuer;
|
|
ExpirationDateString = expirationDateString;
|
|
ValidFromDateString = validFromDateString;
|
|
}
|
|
|
|
public string Issuer { get; set; }
|
|
public string ExpirationDateString { get; set; }
|
|
public string ValidFromDateString { get; set; }
|
|
|
|
}
|
|
}
|