[Issue #1319] Make TagHelperRenderingContext internal

This commit is contained in:
Ajay Bhargav Baaskaran 2017-05-12 15:38:17 -07:00
parent 2274aaeead
commit 8fbe301dc0
2 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ namespace Microsoft.AspNetCore.Razor.Language.CodeGeneration
return scope;
}
public TagHelperRenderingContextScope Push(TagHelperRenderingContext context)
internal TagHelperRenderingContextScope Push(TagHelperRenderingContext context)
{
if (context == null)
{
@ -148,7 +148,7 @@ namespace Microsoft.AspNetCore.Razor.Language.CodeGeneration
}
}
public struct TagHelperRenderingContextScope : IDisposable
internal struct TagHelperRenderingContextScope : IDisposable
{
private readonly CSharpRenderingContext _context;
private readonly TagHelperRenderingContext _renderingContext;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
namespace Microsoft.AspNetCore.Razor.Language.CodeGeneration
{
public class TagHelperRenderingContext
internal class TagHelperRenderingContext
{
private Dictionary<string, string> _renderedBoundAttributes;
private HashSet<string> _verifiedPropertyDictionaries;