Exemple #1
0
 public InternalCustomChecksStartup(IList <ICustomCheck> customChecks, CustomChecksStorage store, HostInformation hostInfo, string endpointName)
 {
     this.customChecks    = customChecks;
     this.store           = store;
     localEndpointDetails = new EndpointDetails
     {
         Host   = hostInfo.DisplayName,
         HostId = hostInfo.HostId,
         Name   = endpointName
     };
 }
Exemple #2
0
 public ReportCustomCheckResultHandler(CustomChecksStorage customChecks)
 {
     this.customChecks = customChecks;
 }
Exemple #3
0
 public InternalCustomCheckManager(CustomChecksStorage store, ICustomCheck check, EndpointDetails localEndpointDetails)
 {
     this.store = store;
     this.check = check;
     this.localEndpointDetails = localEndpointDetails;
 }