Made InvalidNonWhitespaceHtmlCharacters internal
This commit is contained in:
parent
45fad171a6
commit
6fdd4d653c
|
|
@ -21,7 +21,7 @@ namespace Microsoft.AspNetCore.Razor.Language
|
||||||
RegexOptions.None,
|
RegexOptions.None,
|
||||||
TimeSpan.FromMilliseconds(500));
|
TimeSpan.FromMilliseconds(500));
|
||||||
|
|
||||||
public static IReadOnlyCollection<char> InvalidNonWhitespaceHtmlCharacters { get; } = new HashSet<char>(
|
internal static IReadOnlyCollection<char> InvalidNonWhitespaceHtmlCharacters { get; } = new List<char>(
|
||||||
new[] { '@', '!', '<', '/', '?', '[', '>', ']', '=', '"', '\'', '*' });
|
new[] { '@', '!', '<', '/', '?', '[', '>', ']', '=', '"', '\'', '*' });
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue