6 overrides of GetCustomAttributesData
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191
public override IList<CustomAttributeData>
GetCustomAttributesData
()
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191
public override IList<CustomAttributeData>
GetCustomAttributesData
()
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
191
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
168
public sealed override IList<CustomAttributeData>
GetCustomAttributesData
() => CustomAttributes.ToReadOnlyCollection();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
70
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
32
public 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)
75
IList<CustomAttributeData> attributes = parameterInfo.
GetCustomAttributesData
();
207
CheckNullabilityAttributes(nullability, getter.ReturnParameter.
GetCustomAttributesData
());
217
CheckNullabilityAttributes(nullability, setterParams[setterParams.Length - 1].
GetCustomAttributesData
());
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
38
return target.
GetCustomAttributesData
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (3)
72
IList<CustomAttributeData> attributes = parameterInfo.
GetCustomAttributesData
();
204
CheckNullabilityAttributes(nullability, getter.ReturnParameter.
GetCustomAttributesData
());
215
CheckNullabilityAttributes(nullability, parameter.
GetCustomAttributesData
());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (1)
41
public virtual IEnumerable<CustomAttributeData> CustomAttributes =>
GetCustomAttributesData
();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
72
return UnderlyingParameter.
GetCustomAttributesData
();