6 overrides of GetCustomAttributesData
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178public override IList<CustomAttributeData> GetCustomAttributesData()
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178public override IList<CustomAttributeData> GetCustomAttributesData()
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178public override IList<CustomAttributeData> GetCustomAttributesData()
System.Private.CoreLib (1)
src\System\Reflection\RuntimeParameterInfo.cs (1)
489public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
70public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
32public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
19 references to GetCustomAttributesData
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
181_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.AspNetCore.Http.Extensions.Tests (4)
PropertyAsParameterInfoTests.cs (4)
78var attributes = parameterInfo.GetCustomAttributesData(); 95var attributes = parameterInfo.GetCustomAttributesData(); 99parameterInfo.GetCustomAttributesData(), 102parameterInfo.GetCustomAttributesData(),
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
181_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
181_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.Extensions.AI.Abstractions (3)
src\Shared\JsonSchemaExporter\NullabilityInfoContext\NullabilityInfoContext.cs (3)
76IList<CustomAttributeData> attributes = parameterInfo.GetCustomAttributesData(); 208CheckNullabilityAttributes(nullability, getter.ReturnParameter.GetCustomAttributesData()); 217CheckNullabilityAttributes(nullability, setter.GetParameters().Last().GetCustomAttributesData());
Shared (3)
JsonSchemaExporter\NullabilityInfoContext\NullabilityInfoContext.cs (3)
76IList<CustomAttributeData> attributes = parameterInfo.GetCustomAttributesData(); 208CheckNullabilityAttributes(nullability, getter.ReturnParameter.GetCustomAttributesData()); 217CheckNullabilityAttributes(nullability, setter.GetParameters().Last().GetCustomAttributesData());
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
38return target.GetCustomAttributesData();
src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (3)
72IList<CustomAttributeData> attributes = parameterInfo.GetCustomAttributesData(); 204CheckNullabilityAttributes(nullability, getter.ReturnParameter.GetCustomAttributesData()); 215CheckNullabilityAttributes(nullability, parameter.GetCustomAttributesData());
src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (1)
41public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
72return UnderlyingParameter.GetCustomAttributesData();