6 instantiations of UIHintAttribute
HtmlGenerationWebSite (3)
Models\Item.cs (2)
10[UIHint("Common")] 14[UIHint("Common")]
Models\Person.cs (1)
33[UIHint("GenderUsingTagHelpers")]
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
DataAnnotationsMetadataProviderTest.cs (1)
78{ new UIHintAttribute("hintHint"), d => d.TemplateHint, "hintHint" },
ModelMetadataProviderTest.cs (2)
216new UIHintAttribute("value"), metadata => metadata.TemplateHint 590var uiHint = new UIHintAttribute(expected);
9 references to UIHintAttribute
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelMetadata.cs (1)
416/// Use <see cref="System.ComponentModel.DataAnnotations.UIHintAttribute" /> to specify.
Microsoft.AspNetCore.Mvc.DataAnnotations (3)
DataAnnotationsMetadataProvider.cs (2)
66var uiHintAttribute = attributes.OfType<UIHintAttribute>().FirstOrDefault();
HiddenInputAttribute.cs (1)
13/// <see cref="System.ComponentModel.DataAnnotations.UIHintAttribute"/> with some value other than "HiddenInput".
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (1)
ModelMetadataProviderTest.cs (1)
590var uiHint = new UIHintAttribute(expected);
System.ComponentModel.Annotations (3)
System\ComponentModel\DataAnnotations\FilterUIHintAttribute.cs (2)
16private readonly UIHintAttribute.UIHintImplementation _implementation; 69_implementation = new UIHintAttribute.UIHintImplementation(
System\ComponentModel\DataAnnotations\UIHintAttribute.cs (1)
70obj is UIHintAttribute otherAttribute && _implementation.Equals(otherAttribute._implementation);
System.ComponentModel.DataAnnotations (1)
System.ComponentModel.DataAnnotations.cs (1)
40[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.DataAnnotations.UIHintAttribute))]