.NET程序运行过程

时间:2023-03-09 08:57:44
.NET程序运行过程

ASP.NET

http请求

- IIS - isapi.dll

- CLR(com服务通信初始化CLR - AppDomain - 加载程序集 - JIT译 - 本地机器码 - 内存 - CPU 执行)

- ASP.NET管道(HttpRuntime - HttpContext - HttpApplication - HttpModule - HttpHandler)

- 返回响应

GUI程序

exe - com服务通信初始化CLR - AppDomain - 加载程序集 - JIT编译 - 本地机器码 - 内存 - CPU 执行

相关文章