diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs b/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs index 499a0efe39..97ae02ba22 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs @@ -12,18 +12,12 @@ namespace Microsoft.AspNet.Razor.TagHelpers public class TagHelperDescriptor { /// - /// Instantiates a new instance of the class. + /// Internal for testing. /// - /// The tag name that the tag helper targets. '*' indicates a catch-all - /// which applies to every HTML tag. - /// The full name of the tag helper class. - /// The name of the assembly containing the tag helper class. - /// The - /// of the tag helper. - public TagHelperDescriptor([NotNull] string tagName, - [NotNull] string typeName, - [NotNull] string assemblyName, - ContentBehavior contentBehavior) + internal TagHelperDescriptor([NotNull] string tagName, + [NotNull] string typeName, + [NotNull] string assemblyName, + ContentBehavior contentBehavior) : this(tagName, typeName, assemblyName,