4 overrides of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Metadata\PE\PEEventSymbol.cs (1)
379public override ImmutableArray<EventSymbol> ExplicitInterfaceImplementations
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
92public override ImmutableArray<EventSymbol> ExplicitInterfaceImplementations
Symbols\Source\SourceEventSymbol.cs (1)
89public abstract override ImmutableArray<EventSymbol> ExplicitInterfaceImplementations { get; }
Symbols\SubstitutedEventSymbol.cs (1)
96public override ImmutableArray<EventSymbol> ExplicitInterfaceImplementations
5 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (5)
Symbols\EventSymbol.cs (1)
219return ExplicitInterfaceImplementations.Any();
Symbols\MemberSymbolExtensions.cs (1)
601return ((EventSymbol)member).ExplicitInterfaceImplementations.Cast<EventSymbol, Symbol>();
Symbols\PublicModel\EventSymbol.cs (1)
85return _underlying.ExplicitInterfaceImplementations.GetPublicSymbols();
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
109var impls = _underlyingEvent.ExplicitInterfaceImplementations;
Symbols\SubstitutedEventSymbol.cs (1)
104ExplicitInterfaceHelpers.SubstituteExplicitInterfaceImplementations(OriginalDefinition.ExplicitInterfaceImplementations, _containingType.TypeSubstitution),