Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
6 overrides of GetCustomAttributes
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
140public override object[] GetCustomAttributes(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
140public override object[] GetCustomAttributes(Type attributeType, bool inherit)
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
140public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Private.CoreLib (1)
src\System\Reflection\RuntimeParameterInfo.cs (1)
463public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
60public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
62public sealed override object[] GetCustomAttributes(Type attributeType, bool inherit) => throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
18 references to GetCustomAttributes
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\CustomAttributeProvider.cs (1)
89var customAttributes = this.ParameterInfo.GetCustomAttributes(attributeType, inherit);
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\IncomingHttpRouteUtility.cs (1)
52var dataClassificationAttributes = p.ParameterInfo.GetCustomAttributes(_dataClassificationAttributeType, true);
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
142var constructorAttributes = _constructionParameterInfo?.GetCustomAttributes(attributeType, inherit);
Microsoft.AspNetCore.Http.Extensions.Tests (1)
PropertyAsParameterInfoTests.cs (1)
134Assert.Single(parameterInfo.GetCustomAttributes(typeof(TestAttribute), true));
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
142var constructorAttributes = _constructionParameterInfo?.GetCustomAttributes(attributeType, inherit);
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
142var constructorAttributes = _constructionParameterInfo?.GetCustomAttributes(attributeType, inherit);
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\CompilerServices\LateBinding.vb (1)
1021ca = LastParam.GetCustomAttributes(GetType(ParamArrayAttribute), False)
Microsoft\VisualBasic\CompilerServices\VBBinder.vb (2)
289ca = LastParam.GetCustomAttributes(GetType(ParamArrayAttribute), False) 382ca = LastParam.GetCustomAttributes(GetType(ParamArrayAttribute), False)
System.ComponentModel.Composition.Registration (2)
System\ComponentModel\Composition\Registration\PartBuilder.cs (2)
397bool isConfigured = pi.GetCustomAttributes(typeof(ImportAttribute), false).FirstOrDefault() != null || pi.GetCustomAttributes(typeof(ImportManyAttribute), false).FirstOrDefault() != null;
System.Private.CoreLib (5)
src\System\Attribute.CoreCLR.cs (5)
253objAttr = param.GetCustomAttributes(type, false); 280objAttr = baseParam.GetCustomAttributes(type, false); 347object[] objAttr = baseParam.GetCustomAttributes(type, false); 552return (Attribute[])element.GetCustomAttributes(attributeType, inherit); 566return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit);
System.Reflection.Context (2)
System\Reflection\Context\Custom\AttributeUtils.cs (1)
146object[] objects = parameter.GetCustomAttributes(attributeFilterType, false);
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
62return UnderlyingParameter.GetCustomAttributes(attributeType, inherit);