public async Task InvokeAsync( HttpContext context, RequestDelegate next) { if (_nugetServerProvider.IsMatchServerIndex(context)) { await _nugetServerProvider .RespondServerIndexAsync(context); return; } await next(context); return; }