8 instantiations of HiddenInputAttribute
HtmlGenerationWebSite (1)
Models\Person.cs (1)
11[HiddenInput(DisplayValue = false)]
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (7)
DataAnnotationsMetadataProviderTest.cs (1)
73{ new HiddenInputAttribute() { DisplayValue = false }, d => d.HideSurroundingHtml, true },
ModelMetadataProviderTest.cs (6)
315new HiddenInputAttribute { DisplayValue = false }, 320new HiddenInputAttribute { DisplayValue = true }, 325new HiddenInputAttribute(), 589var hidden = new HiddenInputAttribute(); 993[HiddenInput(DisplayValue = false)] 1001[HiddenInput(DisplayValue = false)]
5 references to HiddenInputAttribute
Microsoft.AspNetCore.Mvc.DataAnnotations (4)
DataAnnotationsMetadataProvider.cs (2)
64var hiddenInputAttribute = attributes.OfType<HiddenInputAttribute>().FirstOrDefault();
HiddenInputAttribute.cs (2)
11/// When overriding a <see cref="HiddenInputAttribute"/> inherited from a base class, should apply both 19/// Instantiates a new instance of the <see cref="HiddenInputAttribute"/> class.
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (1)
ModelMetadataProviderTest.cs (1)
589var hidden = new HiddenInputAttribute();