This repository was archived by the owner on Dec 14, 2018. It is now read-only.
File tree 1 file changed +3
-3
lines changed
src/Microsoft.AspNet.Mvc.TagHelpers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ namespace Microsoft.AspNet.Mvc.TagHelpers
12
12
/// <see cref="ITagHelper"/> implementation targeting <environment> elements that conditionally renders content
13
13
/// based on the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
14
14
/// </summary>
15
- /// <remarks>
16
- /// The specified environment names are compared case insensitively to the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
17
- /// </remarks>
18
15
public class EnvironmentTagHelper : TagHelper
19
16
{
20
17
private static readonly char [ ] NameSeparator = new [ ] { ',' } ;
21
18
22
19
/// <summary>
23
20
/// A comma separated list of environment names in which the content should be rendered.
24
21
/// </summary>
22
+ /// <remarks>
23
+ /// The specified environment names are compared case insensitively to the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
24
+ /// </remarks>
25
25
public string Names { get ; set ; }
26
26
27
27
// Protected to ensure subclasses are correctly activated. Internal for ease of use when testing.
You can’t perform that action at this time.
0 commit comments