public DiagnosticServices(IEndpointInfoSource endpointInfoSource,
                           IOptionsMonitor <ProcessFilterOptions> defaultProcessMonitor)
 {
     _endpointInfoSource    = (IEndpointInfoSourceInternal)endpointInfoSource;
     _defaultProcessOptions = defaultProcessMonitor;
 }
 public DiagnosticServices(IEndpointInfoSource endpointInfoSource)
 {
     _endpointInfoSource = (IEndpointInfoSourceInternal)endpointInfoSource;
 }
Beispiel #3
0
 public FilteredEndpointInfoSourceHostedService(IEndpointInfoSource source)
 {
     _source = (FilteredEndpointInfoSource)source;
 }