Created
October 3, 2019 17:15
-
-
Save TwitchBronBron/2482b7ff3b047a241ac2c2cf68ef4289 to your computer and use it in GitHub Desktop.
dotnet framework base url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AppConfig | |
{ | |
public string GetBaseUrl() | |
{ | |
var req = HttpContext.Current.Request; | |
return $"{req.Url.Scheme}://{req.Url.Authority}{req.ApplicationPath.TrimEnd('/')}/"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment