3 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
143
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourcePropertySymbolBase.cs (1)
570
internal override bool
IsExplicitInterfaceImplementation
Symbols\SubstitutedPropertySymbol.cs (1)
104
internal override bool
IsExplicitInterfaceImplementation
8 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
540
return ((PropertySymbol)member).
IsExplicitInterfaceImplementation
;
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
147
return _underlyingProperty.
IsExplicitInterfaceImplementation
;
Symbols\Source\SourceMemberContainerSymbol.cs (2)
2134
if (!indexer.
IsExplicitInterfaceImplementation
) //explicit implementation names are not checked
3574
Debug.Assert(!propertySymbol.
IsExplicitInterfaceImplementation
); // checked by caller
Symbols\SubstitutedPropertySymbol.cs (1)
106
get { return OriginalDefinition.
IsExplicitInterfaceImplementation
; }
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenTupleTest.cs (3)
13266
Assert.True(m10I1P1.
IsExplicitInterfaceImplementation
);
15839
Assert.False(m1P1.
IsExplicitInterfaceImplementation
);
15869
Assert.False(m1this.
IsExplicitInterfaceImplementation
);