Click here to Skip to main content
15,886,362 members
Articles / Web Development / ASP.NET / ASP.NET Core
Tip/Trick

Getting Host Information from the Current URL in ASP.NET Core 3.1

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
1 Feb 2020CPOL1 min read 17.3K   1   1
How to get the host information of web app having situational based URLs without hardcoding it.

Introduction

While working on web applications, it’s quite natural that we need to jump between various environments (i.e., Development, Testing, Production, etc.) during various phases of product life cycle. In other words, all these environments may have different host addresses. Let’s have a look at a few of those.

During the development phase, we usually run our application with http://localhost:8080/features/..., where our host is localhost:8080.

During the testing phase, the same application can be run on http://www.consumerapps.com/features/..., where our host is www.consumerapps.com.

Problem Statement

What if we want to get the host name in log file for an audit purpose. We cannot go and hardcode it in the application, as it may change based on the environment on which the application is running. How can this be achieved?

Solution

In ASP.NET Core 3.1, it can be easily achieved using HttpContext. First change we have to make is to register IHttpContextAccessor as a singleton:

C#
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();

Next, we have to make it available to the controller via constructor injection:

C#
public class HomeController : Controller
{
		private readonly ILogger<homecontroller> _logger;
		private readonly IHttpContextAccessor _httpContextAccessor;

		public HomeController(ILogger<homecontroller> logger, 
                              IHttpContextAccessor httpContextAccessor)
		{
			_logger = logger;
			_httpContextAccessor = httpContextAccessor;
		}
}

Once the above setup is done, host name can be accessed in any Action using the below line of code:

C#
string host = _httpContextAccessor.HttpContext.Request.Host.Value;

Hope you enjoyed this tip.

History

  • 1st February, 2020: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
United States United States
I am 5 times C# Corner MVP, a blogger and technical contributor at various forums like Microsoft TechNet, C# Corner, Code Project ,etc. I received several awards my community contributions. I have also presented technical contents as an speaker.

Comments and Discussions

 
GeneralYou don't need this Pin
SilvioDelgado4-Feb-20 12:53
SilvioDelgado4-Feb-20 12:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.