public IntrospectionEndpoint(ScopeSecretValidator scopeSecretValidator, IIntrospectionRequestValidator requestValidator, IIntrospectionResponseGenerator generator, IEventService events, ILogger <IntrospectionEndpoint> logger)
 {
     _scopeSecretValidator = scopeSecretValidator;
     _requestValidator     = requestValidator;
     _generator            = generator;
     _events = events;
     _logger = logger;
 }
 public IntrospectionEndpointController(
     IntrospectionRequestValidator requestValidator,
     IdentityServerOptions options,
     IEventService events,
     ScopeSecretValidator scopeSecretValidator)
 {
     _requestValidator     = requestValidator;
     _scopeSecretValidator = scopeSecretValidator;
     _options = options;
     _events  = events;
 }