6 overrides of GetCustomAttributesData
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178
public override IList<CustomAttributeData>
GetCustomAttributesData
()
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178
public override IList<CustomAttributeData>
GetCustomAttributesData
()
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
178
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Private.CoreLib (1)
src\System\Reflection\RuntimeParameterInfo.cs (1)
489
public override IList<CustomAttributeData>
GetCustomAttributesData
()
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();
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)
78
var attributes = parameterInfo.
GetCustomAttributesData
();
95
var attributes = parameterInfo.
GetCustomAttributesData
();
99
parameterInfo.
GetCustomAttributesData
(),
102
parameterInfo.
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)
76
IList<CustomAttributeData> attributes = parameterInfo.
GetCustomAttributesData
();
208
CheckNullabilityAttributes(nullability, getter.ReturnParameter.
GetCustomAttributesData
());
217
CheckNullabilityAttributes(nullability, setter.GetParameters().Last().
GetCustomAttributesData
());
Shared (3)
JsonSchemaExporter\NullabilityInfoContext\NullabilityInfoContext.cs (3)
76
IList<CustomAttributeData> attributes = parameterInfo.
GetCustomAttributesData
();
208
CheckNullabilityAttributes(nullability, getter.ReturnParameter.
GetCustomAttributesData
());
217
CheckNullabilityAttributes(nullability, setter.GetParameters().Last().
GetCustomAttributesData
());
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
38
return target.
GetCustomAttributesData
();
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\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
();