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)
224bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 462Debug.Assert(!IsExplicitInterfaceImplementation); 661if (IsExplicitInterfaceImplementation) 851bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 1573if (ContainingType.IsInterface || IsExplicitInterfaceImplementation) 1688if (!this.IsIndexer || this.IsExplicitInterfaceImplementation)