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