美文网首页
HttpRuntime应用程序的运行时

HttpRuntime应用程序的运行时

作者: 没伞的小孩 | 来源:发表于2018-07-06 11:54 被阅读0次

System.Web.HttpRuntime类是整个Asp.net服务器处理的入口。

这个类提供了一系列的静态属性,反映web应用程序域的设置信息,而且每个web应用程序域中存在一个System.Web.Runtime类。


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace HttpRuntimeDemo
{
    public partial class _default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            StringBuilder sb = new StringBuilder();
            //应用程序域id
            sb.AppendFormat("AppDomainAppId:{0}<br/>", HttpRuntime.AppDomainAppId);
            //web应用程序所在文件目录
            sb.AppendFormat("AppDomainAppPath:{0}<br/>", HttpRuntime.AppDomainAppPath);
            //web应用程序的虚拟目录
            sb.AppendFormat("AppDomainAppVirtualPath:{0}<br/>", HttpRuntime.AppDomainAppVirtualPath);
            //客户端脚本在服务器上的文件目录
            sb.AppendFormat("AspClientScriptPhysicalPath:{0}<br/>", HttpRuntime.AspClientScriptPhysicalPath);
            //客户端脚本在服务器上的虚拟目录
            sb.AppendFormat("AspClientScriptPhysicalPath:{0}<br/>", HttpRuntime.AspClientScriptVirtualPath);
            //asp.net安装目录
            sb.AppendFormat("AspInstallDirectory:{0}<br/>", HttpRuntime.AspInstallDirectory);
            //bin目录
            sb.AppendFormat("BinDirectory:{0}<br/>", HttpRuntime.BinDirectory);
            //clr安装目录
            sb.AppendFormat("ClrInstallDirectory:{0}<br/>", HttpRuntime.ClrInstallDirectory);
            //生成代码的目录
            sb.AppendFormat("CodegenDir:{0}<br/>", HttpRuntime.CodegenDir);
            //iss版本
            sb.AppendFormat("IISVersion:{0}<br/>", HttpRuntime.IISVersion.MajorRevision.ToString());
            //本机配置文件所在的目录
            sb.AppendFormat("MachineConfigurationDirectory:{0}<br/>", HttpRuntime.MachineConfigurationDirectory);
            //是否使用iis7集成模式
            sb.AppendFormat("UsingIntegratedPipeline:{0}<br/>", HttpRuntime.UsingIntegratedPipeline.ToString());
            // Summary:
            //     Gets a value that indicates whether the application is mapped to a universal
            //     naming convention (UNC) share.
            sb.AppendFormat("IsOnUNCShare:{0}<br/>", HttpRuntime.IsOnUNCShare.ToString());
            Response.Write(sb.ToString());
            
        }
    }
}

  • 上面列出了HttpRuntime主要的几个静态属性,输出结果为
image.png

而HttpRuntime的静态方法ProcessRequest将帮助我们处理Http请求。


        //
        // Summary:
        //     Drives all ASP.NET Web processing execution.
        //
        // Parameters:
        //   wr:
        //     An System.Web.HttpWorkerRequest for the current application.
        //
        // Exceptions:
        //   System.ArgumentNullException:
        //     The wr parameter is null.
        //
        //   System.PlatformNotSupportedException:
        //     The Web application is running under IIS 7 in Integrated mode.
        public static void ProcessRequest(HttpWorkerRequest wr);

相关文章

  • HttpRuntime应用程序的运行时

    System.Web.HttpRuntime类是整个Asp.net服务器处理的入口。 这个类提供了一系列的静态属性...

  • java基础:java.lang.Runtime

    Runtime简介 当程序运行时,每个java应用程序都能得到一个运行时的实例,应用程序不能创建这个实例,只能从g...

  • Spark 运行时环境

    Spark运行原理 构建应用程序运行时 首先根据应用程序资源需求构建一个运行时环境,通过与资源管理器交互来完成,通...

  • UIKit

    整个 App 的运行时架构: 应用程序的 5 种状态切换:

  • 《疯狂Android讲义》笔记

    一、Android基础: 1、Android平台架构: 应用程序层、应用程序框架、函数库、Android运行时、L...

  • JIT编译器概述

    即时(JIT)编译器是Java™运行时环境的组件,可提高运行时Java应用程序的性能。 Java程序由类组成,这些...

  • Android 进程与线程解读:面试总是被问到的进程间通信你了解

    Android中的进程 进程 当应用程序组件启动并且该应用程序没有任何其他组件在运行时,Android 系统会为该...

  • Android 进程和线程

    当应用程序组件启动并且应用程序没有任何其他组件运行时,Android系统将使用单个执行线程为应用程序启动一个新的L...

  • 利用Runtime类检查程序内存占用情况

    Runtime类封装了运行时的环境。每个Java应用程序都有一个Runtime 类实例,使应用程序能够与其运行的环...

  • 适用于iOS的应用程序编程指南(五)

    处理应用程序状态转换的策略 对于应用程序的每个可能的运行时状态,系统在您的应用程序处于该状态时具有不同的期望值。当...

网友评论

      本文标题:HttpRuntime应用程序的运行时

      本文链接:https://www.haomeiwen.com/subject/dimvuftx.html