HandlerFactoryWrapper.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / HandlerFactoryWrapper.cs / 1 / HandlerFactoryWrapper.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * Config related classes for HttpApplication 
 */
 
namespace System.Web.Configuration {

    using System;
    using System.Web.Util; 

    /* 
     * Single instance handler factory 
     */
    internal class HandlerFactoryWrapper : IHttpHandlerFactory { 
        private IHttpHandler _handler;
        private Type _handlerType;

        internal HandlerFactoryWrapper(IHttpHandler handler, Type handlerType) { 
            _handler = handler;
            _handlerType = handlerType; 
        } 

        public IHttpHandler GetHandler(HttpContext context, String requestType, String url, String pathTranslated) { 
            if (_handler == null)
                _handler = (IHttpHandler)HttpRuntime.CreateNonPublicInstance(_handlerType);

            return _handler; 
        }
 
        public void ReleaseHandler(IHttpHandler handler) { 
            Debug.Assert(handler == _handler);
 
            if (!_handler.IsReusable)
                _handler = null;
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK