Base:
property
IsInterface
Microsoft.CodeAnalysis.CSharp.Symbols.NamedTypeSymbol.IsInterface
10 references to IsInterface
Microsoft.CodeAnalysis.CSharp (10)
Symbols\Source\SourceCustomEventSymbol.cs (1)
149Debug.Assert(containingType.IsInterface);
Symbols\Source\SourceMemberContainerSymbol.cs (2)
1369if (IsInterface) 1806if (IsInterface)
Symbols\Source\SourceMemberContainerSymbol_ImplementationChecks.cs (3)
46if (this.IsInterface) 156if (this.IsInterface) 397if (this.IsInterface)
Symbols\Source\SourceMemberFieldSymbol.cs (1)
369if (containingType.IsInterface)
Symbols\Source\SourceNamedTypeSymbol_Bases.cs (1)
402if (DeclaredAccessibility != Accessibility.Private && IsInterface)
Symbols\Source\SourcePropertySymbol.cs (1)
70(!containingType.IsInterface || hasGetAccessorImplementation || hasSetAccessorImplementation || (modifiers & DeclarationModifiers.Static) != 0) &&
Symbols\Source\SourceUserDefinedOperatorSymbolBase.cs (1)
170bool inInterface = containingType.IsInterface;