Base:
property
IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp.Symbols.PropertySymbol.IsExplicitInterfaceImplementation
12 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (10)
Symbols\Source\SourcePropertyAccessorSymbol.cs (3)
163bool isExplicitInterfaceImplementation = property.IsExplicitInterfaceImplementation; 207bool isExplicitInterfaceImplementation = property.IsExplicitInterfaceImplementation; 596return _property.IsExplicitInterfaceImplementation;
Symbols\Source\SourcePropertySymbol.cs (2)
512if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) 540if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo))
Symbols\Source\SourcePropertySymbolBase.cs (5)
190bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 386Debug.Assert(!IsExplicitInterfaceImplementation); 577if (IsExplicitInterfaceImplementation) 660bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 1408if (!this.IsIndexer || this.IsExplicitInterfaceImplementation)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Source\ExpressionBodiedPropertyTests.cs (2)
399Assert.True(prop.IsExplicitInterfaceImplementation); 403Assert.True(prop.IsExplicitInterfaceImplementation);