2017-09-23 10:08:18 +02:00
|
|
|
|
using System;
|
2017-09-08 19:39:13 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.HealthCheck
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Metadata attribute for health check notification methods
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
|
|
|
|
public sealed class HealthCheckNotificationMethodAttribute : Attribute
|
|
|
|
|
|
{
|
|
|
|
|
|
public HealthCheckNotificationMethodAttribute(string alias)
|
|
|
|
|
|
{
|
|
|
|
|
|
Alias = alias;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string Alias { get; }
|
|
|
|
|
|
}
|
2017-09-23 10:08:18 +02:00
|
|
|
|
}
|