Implemented interface member:
method
IsDefined
System.Reflection.ICustomAttributeProvider.IsDefined(System.Type, System.Boolean)
6 overrides of IsDefined
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
193
public override bool
IsDefined
(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
193
public override bool
IsDefined
(Type attributeType, bool inherit)
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
193
public override bool
IsDefined
(Type attributeType, bool inherit)
System.Private.CoreLib (1)
src\System\Reflection\RuntimeParameterInfo.cs (1)
476
public override bool
IsDefined
(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
85
public override bool
IsDefined
(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
63
public 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)
107
return this.ParameterInfo.
IsDefined
(attributeType, inherit);
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
195
return (_constructionParameterInfo is not null && _constructionParameterInfo.
IsDefined
(attributeType, inherit)) ||
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
195
return (_constructionParameterInfo is not null && _constructionParameterInfo.
IsDefined
(attributeType, inherit)) ||
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
195
return (_constructionParameterInfo is not null && _constructionParameterInfo.
IsDefined
(attributeType, inherit)) ||
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Symbols.vb (1)
674
Return IsArrayType(parameter.ParameterType) AndAlso parameter.
IsDefined
(GetType(ParamArrayAttribute), False)
System.Private.CoreLib (4)
src\System\Attribute.CoreCLR.cs (3)
337
if (param.
IsDefined
(type, false))
592
return element.
IsDefined
(attributeType, false);
595
return element.
IsDefined
(attributeType, false);
src\System\RuntimeType.CoreCLR.cs (1)
2342
if (!lastParameter.
IsDefined
(typeof(ParamArrayAttribute), false))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
87
return UnderlyingParameter.
IsDefined
(attributeType, inherit);