Base:
property
IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp.Symbols.PropertySymbol.IsExplicitInterfaceImplementation
12 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Source\SourcePropertyAccessorSymbol.cs (4)
168ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 212ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 231bool isExplicitInterfaceImplementation = property.IsExplicitInterfaceImplementation; 602return _property.IsExplicitInterfaceImplementation;
Symbols\Source\SourcePropertySymbol.cs (2)
650if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) 684if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo))
Symbols\Source\SourcePropertySymbolBase.cs (6)
225bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 463Debug.Assert(!IsExplicitInterfaceImplementation); 684if (IsExplicitInterfaceImplementation) 874bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 1600if (ContainingType.IsInterface || IsExplicitInterfaceImplementation) 1715if (!this.IsIndexer || this.IsExplicitInterfaceImplementation)