random cleanup
This commit is contained in:
parent
274c9dbc4b
commit
66eb3af806
|
|
@ -8,7 +8,7 @@
|
|||
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*",
|
||||
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
|
||||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
|
||||
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
|
||||
"Microsoft.AspNet.StaticFiles": "1.0.0-*"
|
||||
},
|
||||
"commands": {
|
||||
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001",
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc
|
|||
/// are candidates for selection, the next stage to run is the lowest value of <see cref="Order"/> for any
|
||||
/// constraint of any candidate which is greater than the order of the last stage.
|
||||
///
|
||||
/// Once the stage order is identified, each action has all of it's constraints in that stage executed.
|
||||
/// Once the stage order is identified, each action has all of its constraints in that stage executed.
|
||||
/// If any constraint does not match, then that action is not a candidate for selection. If any actions
|
||||
/// with constraints in the current state are still candidates, then those are the 'best' actions and this
|
||||
/// process will repeat with the next stage on the set of 'best' actions. If after processing the
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace Microsoft.AspNet.Mvc
|
|||
public class ViewResult : ActionResult
|
||||
{
|
||||
/// <summary>
|
||||
/// /// Gets or sets the name of the view to render.
|
||||
/// Gets or sets the name of the view to render.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// When <c>null</c>, defaults to <see cref="ActionDescriptor.Name"/>.
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Razor
|
|||
/// </summary>
|
||||
/// <param name="context">The <see cref="ViewLocationExpanderContext"/> for the current view location
|
||||
/// expansion operation.</param>
|
||||
/// <param name="values">The sequence of view locations to expand.</param>
|
||||
/// <param name="viewLocations">The sequence of view locations to expand.</param>
|
||||
/// <returns>A list of expanded view locations.</returns>
|
||||
IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context,
|
||||
IEnumerable<string> viewLocations);
|
||||
|
|
|
|||
Loading…
Reference in New Issue