15 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (15)
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
118internal sealed override bool IsExplicitInterfaceImplementation
Symbols\ErrorMethodSymbol.cs (1)
124internal override bool IsExplicitInterfaceImplementation
Symbols\ReducedExtensionMethodSymbol.cs (1)
530internal override bool IsExplicitInterfaceImplementation
Symbols\Retargeting\RetargetingMethodSymbol.cs (1)
290internal override bool IsExplicitInterfaceImplementation
Symbols\Source\LambdaSymbol.cs (1)
172internal override bool IsExplicitInterfaceImplementation
Symbols\Source\SourceEventAccessorSymbol.cs (1)
76internal override bool IsExplicitInterfaceImplementation
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (1)
194internal sealed override bool IsExplicitInterfaceImplementation
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
593internal sealed override bool IsExplicitInterfaceImplementation
Symbols\SubstitutedMethodSymbol.cs (1)
261internal sealed override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
213internal override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
325internal override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
128internal sealed override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
258internal sealed override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
225internal override bool IsExplicitInterfaceImplementation
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
278internal override bool IsExplicitInterfaceImplementation
10 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (1)
6347if (overriddenMethod.IsExplicitInterfaceImplementation)
Symbols\MemberSymbolExtensions.cs (1)
538return ((MethodSymbol)member).IsExplicitInterfaceImplementation;
Symbols\Retargeting\RetargetingMethodSymbol.cs (1)
292get { return _underlyingMethod.IsExplicitInterfaceImplementation; }
Symbols\Source\SourceMemberMethodSymbol.cs (4)
545if (IsExplicitInterfaceImplementation && _containingType.IsInterface) 1099(hasBody || IsExplicitInterfaceImplementation)) 1104if ((((hasBody || IsExtern) && !(IsStatic && IsVirtual)) || IsExplicitInterfaceImplementation) && !ContainingAssembly.RuntimeSupportsDefaultInterfaceImplementation) 1109if (((!hasBody && IsAbstract) || IsVirtual) && !IsExplicitInterfaceImplementation && IsStatic && !ContainingAssembly.RuntimeSupportsStaticAbstractMembersInInterfaces)
Symbols\Source\SourceMethodSymbolWithAttributes.cs (1)
621if (ContainingType.IsInterface || IsExplicitInterfaceImplementation)
Symbols\SubstitutedMethodSymbol.cs (1)
263get { return this.OriginalDefinition.IsExplicitInterfaceImplementation; }
Symbols\TypeSymbol.cs (1)
1893if (!implementingMethod.IsExplicitInterfaceImplementation && implementingMethod is SourceMethodSymbolWithAttributes &&