1
I’m setting up a Helper and need to use Httprequestbase on Asp.net core, but I can’t find a reference How could I add ?
Thanks
1
I’m setting up a Helper and need to use Httprequestbase on Asp.net core, but I can’t find a reference How could I add ?
Thanks
0
No, the system.web
is not part of . Net Core. You can check in that catalog.
The equivalent in . Net Core @LINQ already responded in the comment: https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.httprequest
Reference:
Browser other questions tagged c# asp.net-core
You are not signed in. Login or sign up in order to post.
You probably want this: https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.httprequestrequest
– Jéf Bueno