[Issue #1319] Make TagHelperRenderingContext internal
This commit is contained in:
parent
2274aaeead
commit
8fbe301dc0
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue