• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# HttpApplication类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中HttpApplication的典型用法代码示例。如果您正苦于以下问题:C# HttpApplication类的具体用法?C# HttpApplication怎么用?C# HttpApplication使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



HttpApplication类属于命名空间,在下文中一共展示了HttpApplication类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Init

 public void Init(HttpApplication context)
 {
     context.BeginRequest +=
     (new EventHandler(this.Application_BeginRequest));
     context.EndRequest +=
     (new EventHandler(this.Application_EndRequest));
 }
开发者ID:robbytarigan,项目名称:EtCeteraBoilerPlate,代码行数:7,代码来源:LoggingModule.cs


示例2: InitApplication

 internal static void InitApplication(HttpApplication application)
 {
     // We need to run StartApplication first, so that any exception thrown during execution of the StartPage gets
     // recorded on StartPage.Exception
     StartApplication(application);
     InitializeApplication(application);
 }
开发者ID:JokerMisfits,项目名称:linux-packaging-mono,代码行数:7,代码来源:WebPageHttpModule.cs


示例3: LoadModules

		/* stolen from the 1.0 S.W.Config ModulesConfiguration.cs */
		internal HttpModuleCollection LoadModules (HttpApplication app)
		{
			HttpModuleCollection coll = new HttpModuleCollection ();
			Type type;
			
			foreach (HttpModuleAction item in Modules){
				type = HttpApplication.LoadType (item.Type);
				
				if (type == null) {
					/* XXX should we throw here? */
					continue;
				}
				IHttpModule module = (IHttpModule) Activator.CreateInstance (type,
											     BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance,
											     null, null, null);
				module.Init (app);
				coll.AddModule (item.Name, module);
			}

			/* XXX the 1.x config stuff does this
			 * indirectly..  I'm not sure we want to do it
			 * here, but this keeps things working in much
			 * the same fashion in 2.0-land. */
			{
				IHttpModule module = new DefaultAuthenticationModule ();
				module.Init (app);
				coll.AddModule ("DefaultAuthentication", module);
			}

			return coll;
		}
开发者ID:calumjiao,项目名称:Mono-Class-Libraries,代码行数:32,代码来源:HttpModulesSection.cs


示例4: Init

		public void Init (SessionStateModule module, HttpApplication context, SessionConfig config)
		{
			string connectionTypeName;
			string providerAssemblyName;
			string cncString;

			this.config = config;

			GetConnectionData (out providerAssemblyName, out connectionTypeName, out cncString);
			if (cncType == null) {
				Assembly dbAssembly = Assembly.Load (providerAssemblyName);
				cncType = dbAssembly.GetType (connectionTypeName, true);
				if (!typeof (IDbConnection).IsAssignableFrom (cncType))
					throw new ApplicationException ("The type '" + cncType +
							"' does not implement IDB Connection.\n" +
							"Check 'DbConnectionType' in server.exe.config.");
			}

			cnc = (IDbConnection) Activator.CreateInstance (cncType);
			cnc.ConnectionString = cncString;
			try {
				cnc.Open ();
			} catch (Exception exc) {
				cnc = null;
				throw exc;
			}
		}
开发者ID:jjenki11,项目名称:blaze-chem-rendering,代码行数:27,代码来源:SessionSQLServerHandler.cs


示例5: Init

 /// <summary>
 /// Initializes a module and prepares it to handle requests.
 /// </summary>
 /// <param name="context">An <see cref="T:System.Web.HttpApplication"></see> that provides access to the methods, 
 /// properties, and events common to all application objects within an ASP.NET application</param>
 public void Init(HttpApplication context)
 {
     context.PostRequestHandlerExecute += new EventHandler(context_PostRequestHandlerExecute);
     SessionStateModule session = (SessionStateModule)context.Modules["Session"];
     session.End += new EventHandler(session_End);
     session.Start += new EventHandler(session_Start);
 }
开发者ID:huwred,项目名称:SnitzDotNet,代码行数:12,代码来源:VisitorLog.cs


示例6: Init

    /// <summary>Init(実装必須)</summary>
    /// <remarks>
    /// ・BeginRequest               :要求処理の開始前に発生
    /// ・AuthenticateRequest        :呼び出し元を認証
    /// ・AuthorizeRequest           :アクセスチェックを実行
    /// ・ResolveRequestCache        :キャッシュから応答を取得
    /// ・AcquireRequestState        :セッション状態をロード
    /// ・PreRequestHandlerExecute   :要求をハンドラオブジェクトに送信する直前に発生
    /// ・PostRequestHandlerExecute  :要求をハンドラオブジェクトに送信した直後に発生
    /// ・ReleaseRequestState        :セッション状態を保存
    /// ・UpdateRequestCache         :応答キャッシュを更新
    /// ・EndRequest                 :処理の終了後に発生
    /// ・PreSendRequestHeaders      :バッファ内の応答ヘッダーを送信する前に発生
    /// ・PreSendRequestContent      :バッファ内の応答本体を送信する前に発生
    /// </remarks>
    public void Init(HttpApplication application)
    {
        // ASP.NETイベント ハンドラを設定

        application.BeginRequest += (new EventHandler(this.Filter));

        //application.AuthenticateRequest += (new EventHandler(this.Filter));

        //application.AuthorizeRequest += (new EventHandler(this.Filter));

        //application.ResolveRequestCache += (new EventHandler(this.Filter));

        //application.AcquireRequestState += (new EventHandler(this.Filter));

        //application.PreRequestHandlerExecute += (new EventHandler(this.Filter));

        //application.PostRequestHandlerExecute += (new EventHandler(this.Filter));

        //application.ReleaseRequestState += (new EventHandler(this.Filter));

        //application.UpdateRequestCache += (new EventHandler(this.Filter));

        //application.EndRequest += (new EventHandler(this.Filter));

        //application.PreSendRequestHeaders += (new EventHandler(this.Filter));

        //application.PreSendRequestContent += (new EventHandler(this.Filter));
    }
开发者ID:daisukenishino,项目名称:SampleProgram,代码行数:43,代码来源:ToHankakuHttpModule.cs


示例7: ExecuteStartPageInternal

        internal static void ExecuteStartPageInternal(HttpApplication application, Action<string> monitorFile, IVirtualPathFactory virtualPathFactory, IEnumerable<string> supportedExtensions)
        {
            ApplicationStartPage startPage = null;

            foreach (var extension in supportedExtensions)
            {
                var vpath = StartPageVirtualPath + extension;

                // We need to monitor regardless of existence because the user could add/remove the
                // file at any time.
                monitorFile(vpath);
                if (!virtualPathFactory.Exists(vpath))
                {
                    continue;
                }

                if (startPage == null)
                {
                    startPage = virtualPathFactory.CreateInstance<ApplicationStartPage>(vpath);
                    startPage.Application = application;
                    startPage.VirtualPathFactory = virtualPathFactory;
                    startPage.ExecuteInternal();
                }
            }
        }
开发者ID:huangw-t,项目名称:aspnetwebstack,代码行数:25,代码来源:ApplicationStartPage.cs


示例8: Init

    public void Init(HttpApplication context)
    {
        context.AuthenticateRequest += new EventHandler(context_AuthenticateRequest);

        SessionStateModule sessionMod = (SessionStateModule)context.Modules["Session"];
        sessionMod.Start += new EventHandler(context_AuthenticateRequest);
    }
开发者ID:naynishchaughule,项目名称:ASP.NET,代码行数:7,代码来源:LogUserModule.cs


示例9: ExecuteStartPage

 internal static void ExecuteStartPage(HttpApplication application)
 {
     ExecuteStartPage(application,
                      vpath => MonitorFile(vpath),
                      VirtualPathFactoryManager.Instance,
                      WebPageHttpHandler.GetRegisteredExtensions());
 }
开发者ID:huangw-t,项目名称:aspnetwebstack,代码行数:7,代码来源:ApplicationStartPage.cs


示例10: CompressResponse

    /// <summary>
    /// Compresses the response stream if the browser allows it.
    /// </summary>
    private static MemoryStream CompressResponse(Stream responseStream, HttpApplication app, string key)
    {
        MemoryStream dataStream = new MemoryStream();
        StreamCopy(responseStream, dataStream);
        responseStream.Dispose();

        byte[] buffer = dataStream.ToArray();
        dataStream.Dispose();

        MemoryStream ms = new MemoryStream();
        Stream compress = null;

        if (IsEncodingAccepted(DEFLATE))
        {
          compress = new DeflateStream(ms, CompressionMode.Compress);
          app.Application.Add(key + "enc", DEFLATE);
        }
        else if (IsEncodingAccepted(GZIP))
        {
          compress = new GZipStream(ms, CompressionMode.Compress);
          app.Application.Add(key + "enc", DEFLATE);
        }

        compress.Write(buffer, 0, buffer.Length);
        compress.Dispose();
        return ms;
    }
开发者ID:hugohcn,项目名称:sge_webapp,代码行数:30,代码来源:CompressionModule.cs


示例11: WaitForAsyncResultCompletion

        public static void WaitForAsyncResultCompletion(IAsyncResult asyncResult, HttpApplication app) {
            // based on HttpServerUtility.ExecuteInternal()

            if (!asyncResult.IsCompleted) {
                // suspend app lock while waiting, else might deadlock
                bool needToRelock = false;

                try {
                    // .NET 2.0+ will not allow a ThreadAbortException to be thrown while a
                    // thread is inside a finally block, so this pattern ensures that the
                    // value of 'needToRelock' is correct.
                    try { }
                    finally {
                        Monitor.Exit(app);
                        needToRelock = true;
                    }

                    WaitHandle waitHandle = asyncResult.AsyncWaitHandle;

                    if (waitHandle != null) {
                        waitHandle.WaitOne();
                    }
                    else {
                        while (!asyncResult.IsCompleted) {
                            Thread.Sleep(1);
                        }
                    }
                }
                finally {
                    if (needToRelock) {
                        Monitor.Enter(app);
                    }
                }
            }
        }
开发者ID:nobled,项目名称:mono,代码行数:35,代码来源:AsyncUtil.cs


示例12: Init

 public void Init(HttpApplication application)
 {
     application.BeginRequest +=
         (new EventHandler(this.Application_BeginRequest));
     application.EndRequest +=
         (new EventHandler(this.Application_EndRequest));
 }
开发者ID:netusers2014,项目名称:ASP.NET-Web-Forms,代码行数:7,代码来源:SampleHttpModule.cs


示例13: InitializeRubyApplicationHooks

        private void InitializeRubyApplicationHooks(HttpApplication context)
        {
            if (_mvcApplication.IsNull()) return;

            context.Error += (sender, args) => _mvcApplication.Error(sender, args);
            context.AcquireRequestState += (sender, args) => _mvcApplication.AcquireRequestState(sender, args);
            context.AuthenticateRequest += (sender, args) => _mvcApplication.AuthenticateRequest(sender, args);
            context.AuthorizeRequest += (sender, args) => _mvcApplication.AuthorizeRequest(sender, args);
            context.BeginRequest += (sender, args) => _mvcApplication.BeginRequest(sender, args);
            context.Disposed += (sender, args) => _mvcApplication.Disposed(sender, args);
            context.EndRequest += (sender, args) => _mvcApplication.EndRequest(sender, args);
            context.LogRequest += (sender, args) => _mvcApplication.LogRequest(sender, args);
            context.PostAcquireRequestState += (sender, args) => _mvcApplication.PostAcquireRequestState(sender, args);
            context.MapRequestHandler += (sender, args) => _mvcApplication.MapRequestHandler(sender, args);
            context.PostAuthenticateRequest += (sender, args) => _mvcApplication.PostAuthenticateRequest(sender, args);
            context.PostAuthorizeRequest += (sender, args) => _mvcApplication.PostAuthorizeRequest(sender, args);
            context.PostLogRequest += (sender, args) => _mvcApplication.PostLogRequest(sender, args);
            context.PostMapRequestHandler += (sender, args) => _mvcApplication.PostMapRequestHandler(sender, args);
            context.PostReleaseRequestState += (sender, args) => _mvcApplication.PostReleaseRequestState(sender, args);
            context.PostRequestHandlerExecute += (sender, args) => _mvcApplication.PostRequestHandlerExecute(sender, args);
            context.PostResolveRequestCache += (sender, args) => _mvcApplication.PostResolveRequestCache(sender, args);
            context.PostUpdateRequestCache += (sender, args) => _mvcApplication.PostUpdateRequestCache(sender, args);
            context.PreRequestHandlerExecute += (sender, args) => _mvcApplication.PreRequestHandlerExecute(sender, args);
            context.PreSendRequestContent += (sender, args) => _mvcApplication.PreSendRequestContent(sender, args);
            context.PreSendRequestHeaders += (sender, args) => _mvcApplication.PreSendRequestHeaders(sender, args);
            context.ReleaseRequestState += (sender, args) => _mvcApplication.ReleaseRequestState(sender, args);
            context.ResolveRequestCache += (sender, args) => _mvcApplication.ResolveRequestCache(sender, args);
            context.UpdateRequestCache += (sender, args) => _mvcApplication.UpdateRequestCache(sender, args);
        }
开发者ID:jschementi,项目名称:ironrubymvc,代码行数:29,代码来源:RubyMvcModule.cs


示例14: InitializeRubyApplication

        private bool InitializeRubyApplication(HttpApplication context)
        {
            if (_mvcApplication.IsNotNull()) return false;

            _mvcApplication = _rubyEngine.ExecuteFile<MvcApplication>("~/mvc_application.rb",  false);
            if(_mvcApplication.IsNotNull()) _mvcApplication.Start(context, EventArgs.Empty);
            return true;
        }
开发者ID:jschementi,项目名称:ironrubymvc,代码行数:8,代码来源:RubyMvcModule.cs


示例15: Init

		public void Init (SessionStateModule module, HttpApplication context, SessionConfig config)
		{
			this.config = config;
			RemotingConfiguration.Configure (null);
			string cons, proto, server, port;
			GetConData (config.StateConnectionString, out proto, out server, out port);
			cons = String.Format ("{0}://{1}:{2}/StateServer", proto, server, port);
			state_server = (RemoteStateServer) Activator.GetObject (typeof (RemoteStateServer), cons);
		}
开发者ID:jjenki11,项目名称:blaze-chem-rendering,代码行数:9,代码来源:SessionStateServerHandler.cs


示例16: EventHandler

    /// <summary>
    /// Initializes a module and prepares it to handle requests.
    /// </summary>
    /// <param name="context">An <see cref="T:System.Web.HttpApplication"></see> 
    /// that provides access to the methods, properties, and events common to 
    /// all application objects within an ASP.NET application.
    /// </param>
    void IHttpModule.Init(HttpApplication context)
    {
        // For page compression
        context.PreRequestHandlerExecute += new EventHandler(context_PostReleaseRequestState);

        // For WebResource.axd compression
        context.BeginRequest += new EventHandler(context_BeginRequest);
        context.EndRequest += new EventHandler(context_EndRequest);
    }
开发者ID:hugohcn,项目名称:sge_webapp,代码行数:16,代码来源:CompressionModule.cs


示例17: Init

        /// <summary>
        /// initializes a module and prepares it to handle requests.
        /// </summary>
        /// <param name="context">
        ///  An <see cref="T:System.Web.HttpApplication" /> that provides access to the methods, properties, and events common to all application objects within an ASP.NET application 
        /// </param>
        public void Init(HttpApplication context)
        {
            context.EnsureArgumentNotNull("context");

            if (!InitializeRubyEngine(context)) return;
            if (!InitializeRubyApplication(context)) return;
            InitializeRubyApplicationHooks(context);

            _application = context;
        }
开发者ID:jschementi,项目名称:ironrubymvc,代码行数:16,代码来源:RubyMvcModule.cs


示例18: ClearCookie

		void ClearCookie (HttpApplication app, string cookieName)
		{
			HttpCookie clearCookie = new HttpCookie (_config.CookieName, "");

			clearCookie.Path = _config.CookiePath;
			clearCookie.Expires = DateTime.MinValue;
			clearCookie.Domain = _config.Domain;
			clearCookie.Secure = _config.CookieRequireSSL;
			app.Response.SetCookie (clearCookie);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:10,代码来源:RoleManagerModule.cs


示例19: Init

 public void Init(HttpApplication context)
 {
     if (!started)
     {
         lock (locker)
         {
             Start();
             started = true;
         }
     }
 }
开发者ID:NetworkArchetype,项目名称:FrameworkBenchmarks,代码行数:11,代码来源:MyModule.cs


示例20: PostRequestHandlerExecute

    private void PostRequestHandlerExecute(HttpApplication app)
    {
        string contentType = app.Response.ContentType;
        string method = app.Request.HttpMethod;
        int status = app.Response.StatusCode;
        IHttpHandler handler = app.Context.CurrentHandler;

        if (contentType == "text/html" && method == "GET" && status == 200 && handler != null)
        {
            app.Response.Filter = new WhitespaceFilter(app.Response.Filter, app.Request.ContentEncoding);
        }
    }
开发者ID:ampslive,项目名称:MiniBlog,代码行数:12,代码来源:WhitespaceModule.cs



注:本文中的HttpApplication类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# HttpBaseProtocolFilter类代码示例发布时间:2022-05-24
下一篇:
C# HttpActionDescriptor类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap