3 instantiations of CurrentValues
Microsoft.AspNetCore.Mvc.TagHelpers (1)
SelectTagHelper.cs (1)
105var currentValues = _currentValues == null ? null : new CurrentValues(_currentValues);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (2)
OptionTagHelperTest.cs (2)
425tagHelperContext.Items[typeof(SelectTagHelper)] = currentValues == null ? null : new CurrentValues(currentValues); 497tagHelperContext.Items[typeof(SelectTagHelper)] = currentValues == null ? null : new CurrentValues(currentValues);
8 references to CurrentValues
Microsoft.AspNetCore.Mvc.TagHelpers (4)
OptionTagHelper.cs (3)
56/// <see cref="CurrentValues"/> instance. Also does nothing if the associated &lt;option&gt; is already 77var currentValues = formDataEntry as CurrentValues;
SelectTagHelper.cs (1)
105var currentValues = _currentValues == null ? null : new CurrentValues(_currentValues);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (4)
SelectTagHelperTest.cs (4)
622var actualCurrentValues = Assert.IsType<CurrentValues>(keyValuePair.Value); 698var actualCurrentValues = Assert.IsType<CurrentValues>(keyValuePair.Value);