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:
parent
11043cfda2
commit
34d4dfdef8
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue