Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

46 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="HandlerFactoryWrapper.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* 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) {
if (_handler != null) {
Debug.Assert(handler == _handler);
if (!_handler.IsReusable) {
_handler = null;
}
}
}
}
}