7 references to IsInterface
System.CodeDom (7)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
77private bool IsCurrentInterface => _currentClass != null && !(_currentClass is CodeTypeDelegate) ? _currentClass.IsInterface : false;
Microsoft\VisualBasic\VBCodeGenerator.cs (4)
1821if (!c.IsInterface && (e.Attributes & MemberAttributes.ScopeMask) != MemberAttributes.Abstract) 2011if (e.IsInterface) 2019if (!writtenInherits && (e.IsInterface || !typeRef.IsInterface)) 2131else if (e.IsInterface)
System\CodeDom\Compiler\CodeGenerator.cs (1)
29protected bool IsCurrentInterface => _currentClass != null && !(_currentClass is CodeTypeDelegate) ? _currentClass.IsInterface : false;
System\CodeDom\Compiler\CodeValidator.cs (1)
954private bool IsCurrentInterface => _currentClass != null && !(_currentClass is CodeTypeDelegate) ? _currentClass.IsInterface : false;