Base:
property
IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp.Symbols.PropertySymbol.IsExplicitInterfaceImplementation
12 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Source\SourcePropertyAccessorSymbol.cs (4)
167ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 211ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 230bool isExplicitInterfaceImplementation = property.IsExplicitInterfaceImplementation; 597return _property.IsExplicitInterfaceImplementation;
Symbols\Source\SourcePropertySymbol.cs (2)
627if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) 655if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo))
Symbols\Source\SourcePropertySymbolBase.cs (6)
223bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 461Debug.Assert(!IsExplicitInterfaceImplementation); 660if (IsExplicitInterfaceImplementation) 858bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 1575if (ContainingType.IsInterface || IsExplicitInterfaceImplementation) 1690if (!this.IsIndexer || this.IsExplicitInterfaceImplementation)