updated libs

This commit is contained in:
tmont 2011-02-26 04:29:54 +00:00
parent 5e15232192
commit 5dfdea89ce
2 changed files with 91 additions and 73 deletions

Binary file not shown.

View File

@ -203,30 +203,6 @@
not be null.
</summary>
</member>
<member name="T:Portoa.Web.Unity.Matching.AlwaysMatches">
<summary>
A matching rule that always matches
</summary>
</member>
<member name="M:Portoa.Web.FilterInfoExtensions.Flatten(System.Web.Mvc.FilterInfo)">
<summary>
Flattens a <c>FilterInfo</c> object into a single <c>IEnumerable</c> containing
the <c>ActionFilter</c>, <c>ExceptionFilter</c>, <c>ResultFilter</c> and
<c>AuthorizationFilter</c> collections
</summary>
</member>
<member name="T:Portoa.Web.ICurrentUserProvider`1">
<summary>
Provides an interface for identifying the current user
</summary>
<typeparam name="T">The user type</typeparam>
</member>
<member name="P:Portoa.Web.ICurrentUserProvider`1.CurrentUser">
<summary>
Returns the user currently performing actions on the site, or <c>null</c>
if the user cannot be identified
</summary>
</member>
<member name="T:Portoa.Web.Util.NoTempDataProvider">
<summary> This class exists to get rid of the SessionState and TempData error. Just google it. </summary>
</member>
@ -257,12 +233,6 @@
Logs all interceptable method calls via the <see cref="T:Portoa.Web.Unity.LoggerCallHandler"/>
</summary>
</member>
<member name="T:Portoa.Web.NeedsBuildUpAttribute">
<summary>
Indicates that an object needs to be built up by the container
</summary>
<see cref="T:Portoa.Web.InjectableFilterActionInvoker"/>
</member>
<member name="T:Portoa.Web.Unity.Matching.PropertyGetOrSet">
<summary>
Matching rule that matches compiler-generated methods for property
@ -404,21 +374,9 @@
<seealso cref="T:Portoa.Persistence.UnitOfWorkAttribute"/>
<seealso cref="T:Portoa.Persistence.IUnitOfWork"/>
</member>
<member name="T:Portoa.Web.InjectableFilterActionInvoker">
<summary>
Enables you to dynamically add filters to a ControllerActionInvoker. This class will also
perform injection on all filters that are annotated with NeedsBuildUpAttribute.
</summary>
<remarks> Adapted from http://blog.ploeh.dk/2009/12/01/GlobalErrorHandlingInASPNETMVC.aspx </remarks>
</member>
<member name="M:Portoa.Web.InjectableFilterActionInvoker.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
<summary>
Overridden to add the new filters to the default filters
</summary>
</member>
<member name="T:Portoa.Web.Unity.LoggerCallHandler">
<summary>
Performs automatic logging on method calls (but respects <see cref="T:Portoa.Logging.DoNotLogAttribute"/>)
Performs automatic logging of method calls and returns while respecting <see cref="T:Portoa.Logging.DoNotLogAttribute"/>
</summary>
</member>
<member name="M:Portoa.Web.Unity.LoggerCallHandler.FormatString(System.String)">
@ -444,7 +402,7 @@
</member>
<member name="P:Portoa.Web.ErrorHandling.ErrorModel`1.User">
<summary>
The currently logged in user, or <c>null</c> if no one is logged in
Gets or sets the currently logged in user, or <c>null</c> if no one is logged in
</summary>
</member>
<member name="M:Portoa.Web.Controllers.ControllerExtensions.ValidationErrorsToString(System.Web.Mvc.Controller)">
@ -481,26 +439,6 @@
</summary>
<seealso cref="T:Portoa.Web.Util.NoTempDataProvider"/>
</member>
<member name="M:Portoa.Web.ControllerContextExtensions.GetFromRequest``1(System.Web.Mvc.ControllerContext,System.String)">
<summary>
Gets a value from the request and casts it to the specified type
</summary>
</member>
<member name="M:Portoa.Web.ControllerContextExtensions.GetFromRequest(System.Web.Mvc.ControllerContext,System.String)">
<summary>
Gets a value from the request
</summary>
</member>
<member name="M:Portoa.Web.ControllerContextExtensions.AddModelError(System.Web.Mvc.ControllerContext,System.String,System.String)">
<summary>
Adds an error to the model state
</summary>
</member>
<member name="T:Portoa.Web.ContainerControllerFactory">
<summary>
Uses an <c>IUnityContainer</c> to create controllers
</summary>
</member>
<member name="T:Portoa.Web.MvcApplicationBase`1">
<summary>
Base for an MVC application using Unity/NHibernate
@ -555,7 +493,7 @@
Configures the controller factory; default implementation uses Unity to
resolve each controller with a custom action invoker
</summary>
<see cref="T:Portoa.Web.InjectableFilterActionInvoker"/>
<see cref="T:Portoa.Web.Controllers.InjectableFilterActionInvoker"/>
</member>
<member name="M:Portoa.Web.MvcApplicationBase`1.ConfigureUnity">
<summary>
@ -575,13 +513,18 @@
later.
</summary>
</member>
<member name="T:Portoa.Web.IInjectableControllerFactory">
<member name="T:Portoa.Web.Controllers.ContainerControllerFactory">
<summary>
Uses an <c>IUnityContainer</c> to create controllers
</summary>
</member>
<member name="T:Portoa.Web.Controllers.IInjectableControllerFactory">
<summary>
<c cref="T:System.Web.Mvc.IControllerFactory">IControllerFactory</c> that provides a mechanism to perform injection
on the controller after it is instantiated
</summary>
</member>
<member name="E:Portoa.Web.IInjectableControllerFactory.OnControllerInstantiated">
<member name="E:Portoa.Web.Controllers.IInjectableControllerFactory.OnControllerInstantiated">
<summary>
Event that fires after a controller is instantiated
</summary>
@ -690,11 +633,6 @@
</summary>
<typeparam name="T">The type of data to be paged</typeparam>
</member>
<member name="T:Portoa.Web.ServiceProviderControllerFactory">
<summary>
Controller factory that uses a service provider to resolve controllers
</summary>
</member>
<member name="T:Portoa.Web.Validation.FileTypeAttribute">
<summary>
Verifies that an uploaded file has a certain mimetype
@ -729,7 +667,30 @@
</summary>
<see cref="T:Portoa.Web.Filters.OverrideStatusCodeFilter"/>
</member>
<member name="M:Portoa.Web.HttpRequestBaseExtensions.Get``1(System.Web.HttpRequestBase,System.String)">
<member name="T:Portoa.Web.Unity.Matching.HasAttribute`1">
<summary>
Matching rule that matches when a method is annotated with an attribute
</summary>
<typeparam name="T">The attribute to match against</typeparam>
</member>
<member name="T:Portoa.Web.Unity.Lifetime.PerRequestLifetimeManager">
<summary>
<see cref="T:Microsoft.Practices.Unity.LifetimeManager"/> whose lifetime lasts as long as the HTTP request.
The object is stored in <c>HttpContext.Current.Items</c>, keyed by a <see cref="T:System.Guid"/>.
</summary>
</member>
<member name="T:Portoa.Web.Unity.Lifetime.ExplicitlyDisposableLifetimeManager`1">
<summary>
<see cref="T:Microsoft.Practices.Unity.LifetimeManager"/> decorator that allows you to explicitly control
how the object disposes (useful for 3rd-party objects that do not implement
<see cref="T:System.IDisposable"/>)
</summary>
</member>
<member name="M:Portoa.Web.Unity.Lifetime.ExplicitlyDisposableLifetimeManager`1.#ctor(Microsoft.Practices.Unity.LifetimeManager,System.Action{`0})">
<param name="lifetimeManager">The <c>LifetimeManager</c> to decorate</param>
<param name="dispose">Action to call when the value is removed to dispose of the object</param>
</member>
<member name="M:Portoa.Web.Util.HttpRequestBaseExtensions.Get``1(System.Web.HttpRequestBase,System.String)">
<summary>
Gets an object from the request variables, or its default value if
the key does not exist
@ -737,5 +698,62 @@
<typeparam name="T">The type to convert the value to</typeparam>
<param name="key">The request key of the object to retrieve</param>
</member>
<member name="M:Portoa.Web.Util.ControllerContextExtensions.GetFromRequest``1(System.Web.Mvc.ControllerContext,System.String)">
<summary>
Gets a value from the request and casts it to the specified type
</summary>
</member>
<member name="M:Portoa.Web.Util.ControllerContextExtensions.GetFromRequest(System.Web.Mvc.ControllerContext,System.String)">
<summary>
Gets a value from the request
</summary>
</member>
<member name="M:Portoa.Web.Util.ControllerContextExtensions.AddModelError(System.Web.Mvc.ControllerContext,System.String,System.String)">
<summary>
Adds an error to the model state
</summary>
</member>
<member name="T:Portoa.Web.Unity.NeedsBuildUpAttribute">
<summary>
Indicates that an object needs to be built up by the container
</summary>
<see cref="T:Portoa.Web.Controllers.InjectableFilterActionInvoker"/>
</member>
<member name="M:Portoa.Web.Util.FilterInfoExtensions.Flatten(System.Web.Mvc.FilterInfo)">
<summary>
Flattens a <c>FilterInfo</c> object into a single <c>IEnumerable</c> containing
the <c>ActionFilter</c>, <c>ExceptionFilter</c>, <c>ResultFilter</c> and
<c>AuthorizationFilter</c> collections
</summary>
</member>
<member name="T:Portoa.Web.Controllers.InjectableFilterActionInvoker">
<summary>
Enables you to dynamically add filters to a ControllerActionInvoker. This class will also
perform injection on all filters that are annotated with NeedsBuildUpAttribute.
</summary>
<remarks> Adapted from http://blog.ploeh.dk/2009/12/01/GlobalErrorHandlingInASPNETMVC.aspx </remarks>
</member>
<member name="M:Portoa.Web.Controllers.InjectableFilterActionInvoker.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
<summary>
Overridden to add the new filters to the default filters
</summary>
</member>
<member name="T:Portoa.Web.Controllers.ServiceProviderControllerFactory">
<summary>
Controller factory that uses a service provider to resolve controllers
</summary>
</member>
<member name="T:Portoa.Web.Security.ICurrentUserProvider`1">
<summary>
Provides an interface for identifying the current user
</summary>
<typeparam name="T">The user type</typeparam>
</member>
<member name="P:Portoa.Web.Security.ICurrentUserProvider`1.CurrentUser">
<summary>
Returns the user currently performing actions on the site, or <c>null</c>
if the user cannot be identified
</summary>
</member>
</members>
</doc>