6 overrides of GetCustomAttributesData
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191public override IList<CustomAttributeData> GetCustomAttributesData()
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191public override IList<CustomAttributeData> GetCustomAttributesData()
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191public override IList<CustomAttributeData> GetCustomAttributesData()
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
168public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
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();
13 references to GetCustomAttributesData
Aspire.TypeSystem (1)
AttributeDataReader.cs (1)
96=> FindSingleAttribute<AspireUnionData>(parameter.GetCustomAttributesData(), AspireUnionAttributeFullName, ParseAspireUnionData);
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
194_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
194_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
194_constructionParameterInfo?.GetCustomAttributesData() ?? Array.Empty<CustomAttributeData>());
Microsoft.Extensions.AI.Abstractions (3)
parent\parent\parent\eng\MSBuild\parent\parent\src\LegacySupport\NullabilityInfoContext\NullabilityInfoContext.cs (3)
75IList<CustomAttributeData> attributes = parameterInfo.GetCustomAttributesData(); 207CheckNullabilityAttributes(nullability, getter.ReturnParameter.GetCustomAttributesData()); 217CheckNullabilityAttributes(nullability, setterParams[setterParams.Length - 1].GetCustomAttributesData());
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
38return target.GetCustomAttributesData();
src\runtime\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\runtime\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();