Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10985
Modified Files:
PageHandlerFactory.cs
Log Message:
misc updates, doc cleanup, code regions.
Added getter for DbProvider in LocalSessionFactoryObject
Index: PageHandlerFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Support/PageHandlerFactory.cs,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** PageHandlerFactory.cs 19 Mar 2008 18:05:08 -0000 1.35
--- PageHandlerFactory.cs 21 Mar 2008 14:12:29 -0000 1.36
***************
*** 43,48 ****
/// <remarks>
/// <para>
! /// This handler factory uses page name from the URL, without the extension,
! /// to find handler object in the Spring context. This means that the target object
/// definition doesn't need to resolve to an .aspx page -- it can be any valid
/// object that implements <see cref="IHttpHandler"/> interface.
--- 43,48 ----
/// <remarks>
/// <para>
! /// This handler factory uses the page name from the URL, without the extension,
! /// to find the handler object in the Spring context. This means that the target object
/// definition doesn't need to resolve to an .aspx page -- it can be any valid
/// object that implements <see cref="IHttpHandler"/> interface.
***************
*** 203,206 ****
--- 203,208 ----
}
+ #region Properties
+
/// <summary>
/// Use for sync access to this PageHandler instance.
***************
*** 211,214 ****
--- 213,231 ----
}
+ /// <summary>
+ /// Gets <see cref="IDictionary"/> that contains handler state.
+ /// </summary>
+ /// <remarks>
+ /// This <see cref="IDictionary"/> will be assigned to the <c>SharedState</c>
+ /// property of <see cref="IHttpHandler"/> instances that implement
+ /// <see cref="ISharedStateAware"/> interface.
+ /// </remarks>
+ public IDictionary HandlerState
+ {
+ get { return handlerState; }
+ }
+
+ #endregion
+
#region IHttpHandler Members
***************
*** 244,247 ****
--- 261,275 ----
/// <summary>
+ /// Returns true because this wrapper handler can be reused.
+ /// Actual page is instantiated at the beginning of the ProcessRequest method.
+ /// </summary>
+ bool IHttpHandler.IsReusable
+ {
+ get { return true; }
+ }
+
+ #endregion
+
+ /// <summary>
/// Creates a page instance corresponding to this handler's url.
/// </summary>
***************
*** 330,357 ****
}
}
-
- /// <summary>
- /// Returns true because this wrapper handler can be reused.
- /// Actual page is instantiated at the beginning of the ProcessRequest method.
- /// </summary>
- bool IHttpHandler.IsReusable
- {
- get { return true; }
- }
-
- #endregion
-
- /// <summary>
- /// Gets <see cref="IDictionary"/> that contains handler state.
- /// </summary>
- /// <remarks>
- /// This <see cref="IDictionary"/> will be assigned to the <c>SharedState</c>
- /// property of <see cref="IHttpHandler"/> instances that implement
- /// <see cref="ISharedStateAware"/> interface.
- /// </remarks>
- public IDictionary HandlerState
- {
- get { return handlerState; }
- }
}
--- 358,361 ----
|