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)
1824if (!c.IsInterface && (e.Attributes & MemberAttributes.ScopeMask) != MemberAttributes.Abstract) 2014if (e.IsInterface) 2022if (!writtenInherits && (e.IsInterface || !typeRef.IsInterface)) 2134else 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)
966private bool IsCurrentInterface => _currentClass != null && !(_currentClass is CodeTypeDelegate) ? _currentClass.IsInterface : false;