// // (C) 2007 Mainsoft Corporation (http://www.mainsoft.com) // Author: Konstantin Triger // // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System; using System.Collections.Generic; using System.Text; using System.Web; using Mainsoft.Web.Hosting; using javax.servlet; using javax.servlet.http; namespace Mainsoft.Web { /// /// ServletHttpContext contains all of the per-request state information related to the processing of a single request, /// and the rendering of the corresponding response. /// public sealed class ServletHttpContext : BaseHttpContext { internal ServletHttpContext (HttpContext context) : base (context) { } /// /// Gets the Mainsoft.Web.ServletHttpContext object for the current sevlet request. /// /// /// public static new ServletHttpContext GetCurrent (HttpContext context) { return BaseHttpContext.GetCurrent (context) as ServletHttpContext; } private new ServletWorkerRequest Worker { get { return (ServletWorkerRequest) base.Worker; } } /// /// Returns the current javax.servlet.http.HttpServlet object. /// public HttpServlet Servlet { get { return Worker.Servlet; } } /// /// Returns the current javax.servlet.http.HttpServletRequest object. /// public HttpServletRequest ServletRequest { get { return Worker.ServletRequest; } } /// /// Returns the current javax.servlet.http.HttpServletResponse object. /// public HttpServletResponse ServletResponse { get { return Worker.ServletResponse; } } /// /// Returns the javax.servlet.ServletConfig object for the current sevlet. /// public ServletConfig ServletConfig { get { return Servlet.getServletConfig (); } } /// /// Returns the javax.servlet.ServletContext object for the current application. /// public ServletContext ServletContext { get { return Servlet.getServletContext (); } } /// /// Returns the current servlet name. /// public string ServletName { get { return Servlet.getServletName (); } } } }