示例#1
0
 public EventDrivenHealthCheck(IProvideHealthCheck healthCheck, CheckOnCondition condition)
 {
     HealthCheck = healthCheck;
     Condition   = condition;
 }
示例#2
0
 public CheckOnAttribute(Type eventType, CheckOnCondition condition = CheckOnCondition.Always)
 {
     EventType = eventType;
     Condition = condition;
 }
示例#3
0
 public EventDrivenHealthCheck(IProvideHealthCheck healthCheck, CheckOnCondition condition)
 {
     HealthCheck = healthCheck;
     Condition   = condition;
     EventFilter = healthCheck as ICheckOnCondition <TEvent>;
 }