vgquotes/Lib/Portoa.Web.xml

328 lines
16 KiB
XML
Raw Normal View History

2011-02-10 04:39:59 +00:00
<?xml version="1.0"?>
<doc>
<assembly>
<name>Portoa.Web</name>
</assembly>
<members>
<member name="T:Portoa.Web.Controllers.IErrorController">
<summary>
Signifies that this controller can handle errors that aren't handled by
application code
</summary>
</member>
<member name="M:Portoa.Web.Controllers.IErrorController.Unknown">
<summary>
Executed when an unknown error occurs
</summary>
</member>
<member name="M:Portoa.Web.Controllers.IErrorController.NotFound">
<summary>
Executed when a page is not found
</summary>
</member>
<member name="M:Portoa.Web.Controllers.IErrorController.Forbidden">
<summary>
Executed when the user is forbidden from seeing the requested page
</summary>
</member>
<member name="T:Portoa.Web.Models.ResolveWithServiceProviderModelBinder`1">
<summary>
Model binder that uses a service provider to resolve the model binder designated by
<typeparamref name="T"/> which will do the action model binding
</summary>
<typeparam name="T">The model binder to resolve</typeparam>
</member>
<member name="M:Portoa.Web.Util.HtmlHelperExtensions.Submit(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
<summary>
Creates a submit button with the specified button text, input name and HTML attributes
</summary>
<param name="buttonText">The text to display on the submit button</param>
<param name="name">The name of the input</param>
<param name="htmlAttributes">Anonymous object with HTML attribute values</param>
</member>
<member name="M:Portoa.Web.Util.HtmlHelperExtensions.Label(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
<summary>
Creates a label with the specified text for the specified reference tag
</summary>
<param name="labelText">The text/HTML to display inside the label</param>
<param name="htmlFor">The reference ID of the labeled node (e.g. the value of the "for" attribute)</param>
<param name="htmlAttributes">The HTML attributes</param>
</member>
<member name="M:Portoa.Web.Util.HtmlHelperExtensions.Button(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
<summary>
Creates a button with the specified display text and the specified custom HTML attributes
</summary>
<param name="displayText">The text that the button will display</param>
<param name="htmlAttributes">Any additional HTML attributes for the input tag</param>
</member>
<member name="M:Portoa.Web.Util.HtmlHelperExtensions.Button(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary)">
<summary>
Creates a button with the specified display text and the specified custom HTML attributes
</summary>
<param name="displayText">The text that the button will display</param>
<param name="htmlAttributes">Any additional HTML attributes for the input tag</param>
</member>
<member name="T:Portoa.Web.Security.IAuthenticationService">
<summary>
Service for authenticating users
</summary>
</member>
<member name="M:Portoa.Web.Security.IAuthenticationService.Login(System.String)">
<summary>
Logs in the specified user with the specified username
</summary>
</member>
<member name="M:Portoa.Web.Security.IAuthenticationService.Logout">
<summary>
Logs out the currently logged in user
</summary>
</member>
<member name="M:Portoa.Web.Security.IAuthenticationService.IsValid(System.String,System.String)">
<summary>
Determines if a user identified by the given username and password
is a valid user in the system
</summary>
</member>
<member name="T:Portoa.Web.Models.EnumBinder`1">
<remarks>
Adapted from http://eliasbland.wordpress.com/2009/08/08/enumeration-model-binder-for-asp-net-mvc/
</remarks>
</member>
<member name="M:Portoa.Web.ErrorHandling.ErrorViewResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
<summary>
Sets the HTTP status code on the response object before
calling base.ExecuteResult()
</summary>
</member>
<member name="T:Portoa.Web.ErrorHandling.ApplicationErrorHandler">
<summary>
Handles global application-wide errors that don't get caught by
normal means
</summary>
</member>
<member name="M:Portoa.Web.ErrorHandling.ApplicationErrorHandler.HandleError(System.Exception,Portoa.Web.Controllers.IErrorController)">
<summary>
Handles global application errors by invoking the specified error controller
</summary>
</member>
<member name="T:Portoa.Web.Unity.ConfigureInterception">
<summary>
Configures interception to occur for any subsequent container registrations
that are not part of NHibernate
</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>
<member name="M:Portoa.Web.Util.NoTempDataProvider.SaveTempData(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary> Don't use this method, it's only here to prevent you from using it. </summary>
</member>
<member name="M:Portoa.Web.Models.ModelBinderDictionaryExtensions.Add``2(System.Web.Mvc.ModelBinderDictionary)">
<summary>
Maps the type <typeparamref name="T"/> to the binder type <typeparamref name="TBinder"/>.
</summary>
</member>
<member name="M:Portoa.Web.Models.ModelBinderDictionaryExtensions.Add``2(System.Web.Mvc.ModelBinderDictionary,System.IServiceProvider)">
<summary>
Maps the type <typeparamref name="T"/> to the binder type <typeparamref name="TBinder"/>
using the given service provider to resolve the binder
</summary>
</member>
<member name="T:Portoa.Web.Unity.LogAllMethodCalls">
<summary>
Logs all interceptable method calls via the <see cref="T:Portoa.Web.Unity.LoggerCallHandler"/>
</summary>
</member>
2011-02-10 21:05:53 +00:00
<member name="T:Portoa.Web.Unity.ILog4NetConfigurator">
<summary>
Exposes an interface to configure log4net
</summary>
</member>
<member name="M:Portoa.Web.Unity.ILog4NetConfigurator.SetName(System.String)">
<summary>
Sets the name of the logger to retrieve
</summary>
<param name="loggerName">Name of the logger to use</param>
</member>
<member name="M:Portoa.Web.Unity.ILog4NetConfigurator.UseXml(System.String)">
<summary>
Uses the <c>XmlConfigurator</c> to configure log4net
</summary>
<param name="filename">Optional filename to watch, otherwise it uses the default</param>
</member>
<member name="T:Portoa.Web.Unity.ConfigureLog4Net">
<summary>
Configures the application to use log4net
</summary>
</member>
2011-02-10 04:39:59 +00:00
<member name="T:Portoa.Web.Session.ISessionStore">
<summary>
Provides an interface for interacting with session data
</summary>
</member>
<member name="P:Portoa.Web.Session.ISessionStore.Item(System.String)">
<summary>
Gets or sets an item from the backing store
</summary>
<param name="key">The key of the item to retrieve</param>
</member>
<member name="T:Portoa.Web.Unity.UnityContainerExtensions">
<summary>
Extension methods for <c>UnityContainer</c>
</summary>
</member>
<member name="M:Portoa.Web.Unity.UnityContainerExtensions.AddExtensionOnce``1(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Adds an extension if it hasn't already been registered with the container
</summary>
</member>
<member name="M:Portoa.Web.Unity.UnityContainerExtensions.AnyAreRegistered(Microsoft.Practices.Unity.IUnityContainer,System.Type[])">
<summary>
Determines whether any of the given types are registered in the container
</summary>
</member>
<member name="M:Portoa.Web.Unity.UnityContainerExtensions.AllAreRegistered(Microsoft.Practices.Unity.IUnityContainer,System.Type[])">
<summary>
Determines if all of the given types are registered in the container
</summary>
<param name="container"></param>
<param name="types"></param>
<returns></returns>
</member>
<member name="T:Portoa.Web.Session.HttpSessionStore">
<summary>
Session store that uses the current <c>HttpContext</c>
</summary>
</member>
<member name="T:Portoa.Web.Controllers.DefaultErrorController">
<summary>
Controller for handling and displaying errors that aren't handled by application code
</summary>
</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="M:Portoa.Web.Unity.LoggerCallHandler.FormatString(System.String)">
<summary>
Truncates a string to 150 characters in a pretty way, if necessary
</summary>
</member>
<member name="M:Portoa.Web.Controllers.ControllerExtensions.ValidationErrorsToString(System.Web.Mvc.Controller)">
<summary>
Gets all model state errors as a line feed-delimited string
</summary>
</member>
<member name="M:Portoa.Web.Controllers.ControllerExtensions.DoNotUseTempData(System.Web.Mvc.Controller)">
<summary>
Sets up the temporary data provider so that it won't barf with Session errors
</summary>
</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 a container to create controllers
</summary>
</member>
<member name="T:Portoa.Web.ApplicationBase">
<summary>
Base for an Unity/NHibernate MVC application
</summary>
</member>
<member name="M:Portoa.Web.ApplicationBase.HandleApplicationError(System.Exception)">
<summary>
Handles uncaught application exceptions; default implementation uses
<see cref="T:Portoa.Web.ErrorHandling.ApplicationErrorHandler"/> and <see cref="T:Portoa.Web.Controllers.DefaultErrorController"/> to
display errors
</summary>
<param name="exception">The uncaught exception</param>
</member>
<member name="M:Portoa.Web.ApplicationBase.CreateNHibernateConfiguration(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Creates the configuration used for NHibernate; default implementation uses the default
NHibernate configuration, and sets a custom interceptor. The configuration can be retrieved
outside of this method (if needed) via the container. Do not call this method directly.
</summary>
<seealso cref="T:Portoa.NHibernate.BuildWithProviderInterceptor"/>
</member>
<member name="M:Portoa.Web.ApplicationBase.RegisterRoutes(System.Web.Routing.RouteCollection)">
<summary>
Registers any routes for the application; default implementation registers nothing
</summary>
</member>
<member name="M:Portoa.Web.ApplicationBase.RegisterAreas">
<summary>
Registers any applicable areas; default implementations calls
<c>AreaRegistration.RegisterAllAreas()</c>
</summary>
</member>
<member name="M:Portoa.Web.ApplicationBase.ConfigureControllerFactory">
<summary>
Configures the controller factory; default implementation uses Unity to
resolve each controller with a custom action invoker
</summary>
<see cref="T:Portoa.Web.InjectableFilterActionInvoker"/>
</member>
<member name="M:Portoa.Web.ApplicationBase.ConfigureUnity">
<summary>
Performs any application-specific configuration for Unity; default implementation
does nothing
</summary>
</member>
<member name="T:Portoa.Web.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">
<summary>
Event that fires after a controller is instantiated
</summary>
</member>
<member name="M:Portoa.Web.Unity.CallHandlerExtensions.GetInstanceMethodInfo(Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation)">
<summary>
Gets the MethodInfo associated with the actual object instance
in a CallHandler's method invocation
</summary>
</member>
<member name="M:Portoa.Web.Unity.CallHandlerExtensions.GetParameters(Microsoft.Practices.Unity.InterceptionExtension.IParameterCollection)">
<summary>
LINQifies an annoying IParameterCollection
</summary>
</member>
<member name="T:Portoa.Web.Unity.ApplyUnityConfigurationSection">
<summary>
Reads the app config and applies the Unity configuration, if applicable
</summary>
</member>
<member name="T:Portoa.Web.ServiceProviderControllerFactory">
<summary>
Controller factory that uses a service provider to resolve controllers
</summary>
</member>
</members>
</doc>