6 references to IsDefined
Microsoft.AspNetCore.Mvc.ApiExplorer (2)
src\aspnetcore\src\Shared\RoslynUtils\TypeHelper.cs (2)
26return Attribute.IsDefined(type, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(type.DeclaringType); 38return Attribute.IsDefined(method, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(method.DeclaringType);
Microsoft.AspNetCore.Routing (2)
src\aspnetcore\src\Shared\RoslynUtils\TypeHelper.cs (2)
26return Attribute.IsDefined(type, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(type.DeclaringType); 38return Attribute.IsDefined(method, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(method.DeclaringType);
Microsoft.ML.Benchmarks.Tests (1)
BenchmarksTest.cs (1)
41where Attribute.IsDefined(type, typeof(CIBenchmark))
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeExtensions.cs (1)
157return Attribute.IsDefined(element, attributeType);