Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/NotificationMethods/IHealthCheckNotificationMethod.cs
2018-12-21 13:42:24 +01:00

13 lines
333 B
C#

using System.Threading;
using System.Threading.Tasks;
using Umbraco.Core.Composing;
namespace Umbraco.Web.HealthCheck.NotificationMethods
{
public interface IHealthCheckNotificationMethod : IDiscoverable
{
bool Enabled { get; }
Task SendAsync(HealthCheckResults results, CancellationToken token);
}
}