PROGRAM AREA
Statistics
The Highest Post
Statistics
Count
20
Avg
21.00
Min
21
Max
21
Asp.Net Core Top questions
Details
Peter Agyekum
What is the use of UseIISIntegration?
Ans: This tells ASP.NET that IIS will be working as a reverse proxy in front of Kestrel. As if you expose your application to the Internet, you must use IIS, Nginx, or Apache as a reverse proxy server. When you wish to deploy your ASP.NET Core application on windows, you need to tell ASP.NET Core Host to use IIS integration. UseKestrel and UseIISIntegration must be used in conjunction as UseKestrel creates the web server and hosts the code. UseIISIntegration specifies IIS as the reverse proxy server.
Post Reply
Back to HomePage
Related Topics
What is .NET Core?
What are some of the features of .Net Core?
Why Use ASP.NET Core for Web Application Development?
What is Startup.cs file in ASP.NET Core?
What ConfigureServices() method does in Startup.cs?
What is Kestral?
What is WebListener?
What is a Host and what’s the importance of Host in ASP.NET Core application?
How to handle 404 error in ASP.NET Core 1.0
What is the use of UseIISIntegration?
What are the different ways for bundling and minification in ASP.NET Core?
What is wwwroot folder in ASP.NET Core?
What is AspNetCore Middleware?
What is Static files in ASP.NET Core?
What is AspNetCore EndPoint?
What is host in AspNetCore?
What does CreateDefaultBuilder in program.cs in Asp.netCore?
What is Kestrel?
What is the difference between synchronous postback and asynchronous postback?
Can you explain Service Lifetime in AspNet Core?