3 references to IsCompilerGeneratedType
Microsoft.AspNetCore.OpenApi (3)
Services\OpenApiGenerator.cs (1)
348if (methodInfo.DeclaringType is not null && !TypeHelper.IsCompilerGeneratedType(methodInfo.DeclaringType))
src\Shared\RoslynUtils\TypeHelper.cs (2)
26return Attribute.IsDefined(type, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(type.DeclaringType); 38return Attribute.IsDefined(method, typeof(CompilerGeneratedAttribute)) || IsCompilerGeneratedType(method.DeclaringType);