Base:
property
IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp.Symbols.PropertySymbol.IsExplicitInterfaceImplementation
14 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Source\SourcePropertyAccessorSymbol.cs (4)
193ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 237ModifierUtils.CheckAccessibility(this.DeclarationModifiers, this, property.IsExplicitInterfaceImplementation, diagnostics, location); 256bool isExplicitInterfaceImplementation = property.IsExplicitInterfaceImplementation; 650return _property.IsExplicitInterfaceImplementation;
Symbols\Source\SourcePropertySymbol.cs (2)
646if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) 680if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo))
Symbols\Source\SourcePropertySymbolBase.cs (6)
225bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 463Debug.Assert(!IsExplicitInterfaceImplementation); 686if (IsExplicitInterfaceImplementation) 876bool isExplicitInterfaceImplementation = IsExplicitInterfaceImplementation; 1641if (ContainingType.IsInterface || IsExplicitInterfaceImplementation) 1761if (!this.IsIndexer || this.IsExplicitInterfaceImplementation)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Source\ExpressionBodiedPropertyTests.cs (2)
399Assert.True(prop.IsExplicitInterfaceImplementation); 403Assert.True(prop.IsExplicitInterfaceImplementation);