* 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.
11 lines
264 B
C#
11 lines
264 B
C#
using System.Threading.Tasks;
|
|
using Wino.Core.Domain.Entities;
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
{
|
|
public interface IImapTestService
|
|
{
|
|
Task TestImapConnectionAsync(CustomServerInformation serverInformation, bool allowSSLHandShake);
|
|
}
|
|
}
|