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)
206
public override bool
IsDefined
(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
206
public override bool
IsDefined
(Type attributeType, bool inherit)
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
206
public override bool
IsDefined
(Type attributeType, bool inherit)
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
178
public sealed 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\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208
return (_constructionParameterInfo is not null && _constructionParameterInfo.
IsDefined
(attributeType, inherit)) ||
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208
return (_constructionParameterInfo is not null && _constructionParameterInfo.
IsDefined
(attributeType, inherit)) ||
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
208
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\runtime\src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (3)
147
if (!par[j].
IsDefined
(typeof(ParamArrayAttribute), true))
163
if (!par[lastArgPos].
IsDefined
(typeof(ParamArrayAttribute), true))
178
&& par[lastArgPos].
IsDefined
(typeof(ParamArrayAttribute), true)
System\Reflection\Runtime\BindingFlagSupport\Shared.cs (1)
108
if (!lastParameter.
IsDefined
(typeof(ParamArrayAttribute), false))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingParameterInfo.cs (1)
87
return UnderlyingParameter.
IsDefined
(attributeType, inherit);