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