updated libs
This commit is contained in:
parent
91dad73a4e
commit
b75f46359d
Binary file not shown.
@ -591,6 +591,17 @@
|
||||
</summary>
|
||||
<see cref="T:Portoa.Web.Controllers.InjectableFilterActionInvoker"/>
|
||||
</member>
|
||||
<member name="M:Portoa.Web.MvcApplicationBase`1.EnableSmartCasing">
|
||||
<summary>
|
||||
Enables <c cref="T:Portoa.Web.SmartCasing.SmartCaseConverter">smart casing</c> for views and routes. This should
|
||||
be called after Unity is configured and after the controller factory has been set, e.g. in
|
||||
<see cref="M:Portoa.Web.MvcApplicationBase`1.AfterStartUp"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.InvalidOperationException">Raised if <see cref="T:Portoa.Logging.ILogger"/> is not registered in the container</exception>
|
||||
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseConverter"/>
|
||||
<seealso cref="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])"/>
|
||||
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/>
|
||||
</member>
|
||||
<member name="M:Portoa.Web.MvcApplicationBase`1.ConfigureUnity">
|
||||
<summary>
|
||||
Performs any application-specific configuration for Unity; default implementation
|
||||
@ -858,23 +869,16 @@
|
||||
</summary>
|
||||
<see cref="T:Portoa.Web.Filters.OverrideStatusCodeFilter"/>
|
||||
</member>
|
||||
<member name="T:Portoa.Web.Routing.SmartCaseRoute">
|
||||
<member name="T:Portoa.Web.SmartCasing.SmartCaseControllerFactory">
|
||||
<summary>
|
||||
Route that handles casing intelligently. It converts incoming paths to lowercase,
|
||||
and adds a hyphen before each upper case letter (unless it starts the string). Use
|
||||
<see cref="M:Portoa.Web.Routing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])"/> to make use of this class.
|
||||
</summary>
|
||||
<seealso cref="T:Portoa.Web.Routing.SmartCaseViewEngine"/>
|
||||
</member>
|
||||
<member name="T:Portoa.Web.Routing.SmartCaseViewEngine">
|
||||
<summary>
|
||||
View engine for creating views that have been routed by a <see cref="T:Portoa.Web.Routing.SmartCaseRoute"/>
|
||||
Controller factory decorator that updates the given controller name using
|
||||
<see cref="F:Portoa.Web.SmartCasing.SmartCaseControllerFactory.smartCaseConverter"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Portoa.Web.Routing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
|
||||
<member name="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
|
||||
<summary>
|
||||
Adds a URL pattern to the route collection utilizing intelligent casing when
|
||||
deconstructing URLs. Make sure you add the <see cref="T:Portoa.Web.Routing.SmartCaseViewEngine"/> to
|
||||
deconstructing URLs. Make sure you add the <see cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/> to
|
||||
your <see cref="T:System.Web.Mvc.ViewEngineCollection"/>.
|
||||
</summary>
|
||||
<param name="name">The name of the route, or null if unnamed</param>
|
||||
@ -883,5 +887,35 @@
|
||||
<param name="constraints">Constraints (if applicable) for the route values</param>
|
||||
<param name="namespaces">Namespaces to search (unused)</param>
|
||||
</member>
|
||||
<member name="T:Portoa.Web.SmartCasing.SmartCaseViewEngine">
|
||||
<summary>
|
||||
View engine for creating views that have been routed by a <see cref="T:Portoa.Web.SmartCasing.SmartCaseRoute"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Portoa.Web.SmartCasing.SmartCaseRoute">
|
||||
<summary>
|
||||
Route that handles casing intelligently. It converts incoming paths to lowercase,
|
||||
and adds a hyphen before each upper case letter (unless it starts the string). Use
|
||||
<see cref="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])"/> to make use of this class.
|
||||
</summary>
|
||||
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/>
|
||||
</member>
|
||||
<member name="T:Portoa.Web.SmartCasing.SmartCaseConverter">
|
||||
<summary>
|
||||
Applies smart casing rules to strings
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertFrom(System.String)">
|
||||
<summary>
|
||||
Converts a smart-cased string back to a "dumb" one
|
||||
</summary>
|
||||
<param name="value">The smart-cased string to convert</param>
|
||||
</member>
|
||||
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertTo(System.String)">
|
||||
<summary>
|
||||
Converts a "dumb" string to a smart-cased one
|
||||
</summary>
|
||||
<param name="value">The non-smart-cased string to convert</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
|
Loading…
Reference in New Issue
Block a user