Rename Context to HttpContext in ViewComponent and RazorPage

Rename the property to `HttpContext` to be consistent with the `Controller` class.
Fixes #3332
This commit is contained in:
Henk Mollema 2015-10-19 13:54:36 +02:00 committed by Pranav K
parent 11043cfda2
commit 34d4dfdef8
1 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ namespace Microsoft.AspNet.Mvc
private ICompositeViewEngine _viewEngine; private ICompositeViewEngine _viewEngine;
/// <summary> /// <summary>
/// Gets the <see cref="HttpContext"/>. /// Gets the <see cref="Http.HttpContext"/>.
/// </summary> /// </summary>
public HttpContext Context public HttpContext HttpContext
{ {
get get
{ {