2 implementations of ProcessRequestAsync
Microsoft.AspNetCore.Hosting (1)
Internal\HostingApplication.cs (1)
94public Task ProcessRequestAsync(Context context)
Microsoft.AspNetCore.TestHost (1)
ApplicationWrapper.cs (1)
54Task IHttpApplication<TContext>.ProcessRequestAsync(TContext context)
5 references to ProcessRequestAsync
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContextOfT.cs (1)
50await application.ProcessRequestAsync(context);
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContextOfT.cs (1)
37await _application.ProcessRequestAsync(context);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
698await application.ProcessRequestAsync(context);
Microsoft.AspNetCore.TestHost (2)
ApplicationWrapper.cs (2)
51return ((IHttpApplication<TContext>)this).ProcessRequestAsync((TContext)context); 57return _application.ProcessRequestAsync(context);