3 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
143internal override bool IsExplicitInterfaceImplementation
Symbols\Source\SourcePropertySymbolBase.cs (1)
677internal override bool IsExplicitInterfaceImplementation
Symbols\SubstitutedPropertySymbol.cs (1)
104internal override bool IsExplicitInterfaceImplementation
9 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (6)
Symbols\MemberSymbolExtensions.cs (1)
774return ((PropertySymbol)member).IsExplicitInterfaceImplementation;
Symbols\PropertySymbol.cs (1)
360=> !IsOverride && !IsExplicitInterfaceImplementation && (IsIndexer || IsIndexedProperty || this.GetIsNewExtensionMember());
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
147return _underlyingProperty.IsExplicitInterfaceImplementation;
Symbols\Source\SourceMemberContainerSymbol.cs (2)
2300if (!indexer.IsExplicitInterfaceImplementation) //explicit implementation names are not checked 4382Debug.Assert(!propertySymbol.IsExplicitInterfaceImplementation); // checked by caller
Symbols\SubstitutedPropertySymbol.cs (1)
106get { return OriginalDefinition.IsExplicitInterfaceImplementation; }
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenTupleTest.cs (3)
13260Assert.True(m10I1P1.IsExplicitInterfaceImplementation); 15833Assert.False(m1P1.IsExplicitInterfaceImplementation); 15863Assert.False(m1this.IsExplicitInterfaceImplementation);