Replies: 2 comments 9 replies
-
Although I'm not entirely clear what you're asking for I'll try to answer.
Both are implementations of a "server" in ASP.NET Core and can't be stacked together.
The native part of the IISModule (that is written in C++) is needed to bridge over to the managed server part in ASP.NET Core (that is written in C#).
What do you mean by "not to be changed"? In .NET you can use ASP.NET Core support for Native AOT to get native binaries. In regards your concern they are equal to code written in C++. Besides that server code usually runs on a server (😉), so you or the admin should be under control who has access to the binaries.
To have NativeAOT only for certain urls isn't supported directly.
NativeAOT can be compiled for Linux too. |
Beta Was this translation helpful? Give feedback.
-
thank you for your answer. I will set this repo(my project) in github for public but I do not users who use it change the response html of the url |
Beta Was this translation helpful? Give feedback.
-
in IIS I can use IISModule which is written in c++.
and in keystrel can it use c++ too?
what I want is to:
1.use c++ dll. so I can protect my code not to be changed.
2.do with some url forexample :if the url is
/recg
then I will use c++ to do it. and write response .3.in linux I can use it too(with dll in linux)
Beta Was this translation helpful? Give feedback.
All reactions