Horje
get request url in asp.net core Code Example
get request url in asp.net core
using Microsoft.AspNetCore.Http.Extensions; 


var url = httpContext.Request.GetEncodedUrl();
or

var url = httpContext.Request.GetDisplayUrl();
depending on the purposes.
get request url in asp.net core
var url = HttpContext.Current.Request.Url.AbsoluteUri;




Csharp

Related
how to reference scripts in other scenes unity Code Example how to reference scripts in other scenes unity Code Example
c# get last character of string Code Example c# get last character of string Code Example
c# remove last value from list Code Example c# remove last value from list Code Example
how to do cmd command c# Code Example how to do cmd command c# Code Example
how to set the fps in monogame Code Example how to set the fps in monogame Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9