3 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
144
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourcePropertySymbolBase.cs (1)
680
internal override bool
IsExplicitInterfaceImplementation
Symbols\SubstitutedPropertySymbol.cs (1)
105
internal override bool
IsExplicitInterfaceImplementation
6 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (6)
Symbols\MemberSymbolExtensions.cs (1)
786
return ((PropertySymbol)member).
IsExplicitInterfaceImplementation
;
Symbols\PropertySymbol.cs (1)
358
=> !IsOverride && !
IsExplicitInterfaceImplementation
&& (IsIndexer || IsIndexedProperty || this.IsExtensionBlockMember());
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
148
return _underlyingProperty.
IsExplicitInterfaceImplementation
;
Symbols\Source\SourceMemberContainerSymbol.cs (2)
2483
if (!indexer.
IsExplicitInterfaceImplementation
) //explicit implementation names are not checked
4532
Debug.Assert(!propertySymbol.
IsExplicitInterfaceImplementation
); // checked by caller
Symbols\SubstitutedPropertySymbol.cs (1)
107
get { return OriginalDefinition.
IsExplicitInterfaceImplementation
; }