4 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
87internal override bool IsExplicitInterfaceImplementation
Symbols\Source\SourceCustomEventSymbol.cs (1)
205internal override bool IsExplicitInterfaceImplementation
Symbols\Source\SourceFieldLikeEventSymbol.cs (1)
174internal override bool IsExplicitInterfaceImplementation
Symbols\SubstitutedEventSymbol.cs (1)
86internal override bool IsExplicitInterfaceImplementation
11 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (8)
Symbols\MemberSymbolExtensions.cs (1)
777return ((EventSymbol)member).IsExplicitInterfaceImplementation;
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
89get { return _underlyingEvent.IsExplicitInterfaceImplementation; }
Symbols\Source\SourceEventAccessorSymbol.cs (2)
45isExplicitInterfaceImplementation: @event.IsExplicitInterfaceImplementation, 78get { return _event.IsExplicitInterfaceImplementation; }
Symbols\Source\SourceEventSymbol.cs (2)
590bool isExplicitInterfaceImplementationInInterface = ContainingType.IsInterface && IsExplicitInterfaceImplementation; 620else if (IsPartial && IsExplicitInterfaceImplementation)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
4405Debug.Assert(!eventSymbol.IsExplicitInterfaceImplementation); // checked by caller
Symbols\SubstitutedEventSymbol.cs (1)
88get { return OriginalDefinition.IsExplicitInterfaceImplementation; }
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenTupleTest.cs (3)
13272Assert.True(m10I1E1.IsExplicitInterfaceImplementation); 16063Assert.False(m1E1.IsExplicitInterfaceImplementation); 16096Assert.False(m1E2.IsExplicitInterfaceImplementation);