2 writes to Attributes
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\ParameterModelBase.cs (2)
26Attributes = new List<object>(attributes ?? throw new ArgumentNullException(nameof(attributes))); 40Attributes = new List<object>(other.Attributes);
5 references to Attributes
Microsoft.AspNetCore.Mvc.Core (3)
ApplicationModels\ParameterModel.cs (1)
55public new IReadOnlyList<object> Attributes => base.Attributes;
ApplicationModels\ParameterModelBase.cs (1)
40Attributes = new List<object>(other.Attributes);
ApplicationModels\PropertyModel.cs (1)
54public new IReadOnlyList<object> Attributes => base.Attributes;
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\CompiledPageActionDescriptorFactory.cs (2)
78var parameterModelConventions = GetConventions<IParameterModelBaseConvention>(parameterModel.Attributes); 89var propertyModelConventions = GetConventions<IParameterModelBaseConvention>(propertyModel.Attributes);