Implemented interface member:
method
IsDefined
System.Reflection.ICustomAttributeProvider.IsDefined(System.Type, System.Boolean)
6 overrides of IsDefined
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
206public override bool IsDefined(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
206public override bool IsDefined(Type attributeType, bool inherit)
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
206public override bool IsDefined(Type attributeType, bool inherit)
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
178public sealed override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
85public override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
63public sealed override bool IsDefined(Type attributeType, bool inherit) => throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
10 references to IsDefined
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\CustomAttributeProvider.cs (1)
107return this.ParameterInfo.IsDefined(attributeType, inherit);
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208return (_constructionParameterInfo is not null && _constructionParameterInfo.IsDefined(attributeType, inherit)) ||
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208return (_constructionParameterInfo is not null && _constructionParameterInfo.IsDefined(attributeType, inherit)) ||
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208return (_constructionParameterInfo is not null && _constructionParameterInfo.IsDefined(attributeType, inherit)) ||
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Symbols.vb (1)
674Return IsArrayType(parameter.ParameterType) AndAlso parameter.IsDefined(GetType(ParamArrayAttribute), False)
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (3)
147if (!par[j].IsDefined(typeof(ParamArrayAttribute), true)) 163if (!par[lastArgPos].IsDefined(typeof(ParamArrayAttribute), true)) 178&& par[lastArgPos].IsDefined(typeof(ParamArrayAttribute), true)
System\Reflection\Runtime\BindingFlagSupport\Shared.cs (1)
108if (!lastParameter.IsDefined(typeof(ParamArrayAttribute), false))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
87return UnderlyingParameter.IsDefined(attributeType, inherit);