Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/NotificationMethods/IHealthCheckNotificationMethod.cs

12 lines
287 B
C#
Raw Normal View History

2017-09-08 19:39:13 +02:00
using System.Threading;
using System.Threading.Tasks;
namespace Umbraco.Web.HealthCheck.NotificationMethods
{
public interface IHealthCheckNotificationMethod
{
2017-09-19 15:51:47 +02:00
bool Enabled { get; }
2017-09-08 19:39:13 +02:00
Task SendAsync(HealthCheckResults results, CancellationToken token);
}
}