HandlerWithFactory.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / HandlerWithFactory.cs / 1 / HandlerWithFactory.cs

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

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

    using System;
 
    /*
     * Factory / handler pair for recycling 
     */ 
    internal class HandlerWithFactory {
        private IHttpHandler _handler; 
        private IHttpHandlerFactory _factory;

        internal HandlerWithFactory(IHttpHandler handler, IHttpHandlerFactory factory) {
            _handler = handler; 
            _factory = factory;
        } 
 
        internal void Recycle() {
            _factory.ReleaseHandler(_handler); 
        }
    }
}

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

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

    using System;
 
    /*
     * Factory / handler pair for recycling 
     */ 
    internal class HandlerWithFactory {
        private IHttpHandler _handler; 
        private IHttpHandlerFactory _factory;

        internal HandlerWithFactory(IHttpHandler handler, IHttpHandlerFactory factory) {
            _handler = handler; 
            _factory = factory;
        } 
 
        internal void Recycle() {
            _factory.ReleaseHandler(_handler); 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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