5 implementations of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationEventSymbol.cs (1)
20public ImmutableArray<IEventSymbol> ExplicitInterfaceImplementations { get; }
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\EventSymbol.cs (1)
81ImmutableArray<IEventSymbol> IEventSymbol.ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedEventSymbol.cs (1)
22public ImmutableArray<IEventSymbol> ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\EventSymbol.vb (1)
320Private ReadOnly Property IEventSymbol_ExplicitInterfaceImplementations As ImmutableArray(Of IEventSymbol) Implements IEventSymbol.ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationEventSymbol.cs (1)
20public ImmutableArray<IEventSymbol> ExplicitInterfaceImplementations { get; }
25 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CodeStyle (3)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
710return ((IEventSymbol)memberSymbol).ExplicitInterfaceImplementations.IsEmpty;
INamedTypeSymbolExtensions.cs (1)
168IEventSymbol @event => @event.ExplicitInterfaceImplementations.Length > 0,
ISymbolExtensions.cs (1)
87IEventSymbol @event => ImmutableArray<ISymbol>.CastUp(@event.ExplicitInterfaceImplementations),
Microsoft.CodeAnalysis.CSharp (1)
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
260AddExplicitInterfaceIfNeeded(symbol.ExplicitInterfaceImplementations);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
EventGenerator.cs (2)
127var explicitInterfaceSpecifier = GenerateExplicitInterfaceSpecifier(@event.ExplicitInterfaceImplementations); 196if (@event.ExplicitInterfaceImplementations.Any())
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
EventGenerator.cs (2)
127var explicitInterfaceSpecifier = GenerateExplicitInterfaceSpecifier(@event.ExplicitInterfaceImplementations); 196if (@event.ExplicitInterfaceImplementations.Any())
Microsoft.CodeAnalysis.Features (7)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
710return ((IEventSymbol)memberSymbol).ExplicitInterfaceImplementations.IsEmpty;
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
3767if (!oldEvent.ExplicitInterfaceImplementations.IsEmpty || !newEvent.ExplicitInterfaceImplementations.IsEmpty)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedEventSymbol.cs (1)
28: _symbol.ExplicitInterfaceImplementations;
RQName\RQNodeBuilder.cs (3)
180if (symbol.ExplicitInterfaceImplementations.Any()) 182if (symbol.ExplicitInterfaceImplementations.Length > 1) 187var interfaceType = BuildType(symbol.ExplicitInterfaceImplementations.Single().ContainingType);
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\EventSymbol.vb (1)
320Private ReadOnly Property IEventSymbol_ExplicitInterfaceImplementations As ImmutableArray(Of IEventSymbol) Implements IEventSymbol.ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Semantics\GetSemanticInfoTests.vb (2)
3115Assert.Equal(handledEvent0.EventSymbol.ExplicitInterfaceImplementations.Length, commonEventSymbol.ExplicitInterfaceImplementations.Length)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (3)
CodeGeneration\EventGenerator.vb (3)
125Dim explicitInterface = [event].ExplicitInterfaceImplementations.FirstOrDefault() 149implementsClause:=GenerateImplementsClause([event].ExplicitInterfaceImplementations.FirstOrDefault())) 158implementsClause:=GenerateImplementsClause([event].ExplicitInterfaceImplementations.FirstOrDefault()))
Microsoft.CodeAnalysis.Workspaces (4)
Editing\SyntaxGenerator.cs (2)
503if (symbol.ExplicitInterfaceImplementations.Length > 0) 506ImmutableArray<ISymbol>.CastUp(symbol.ExplicitInterfaceImplementations));
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\INamedTypeSymbolExtensions.cs\INamedTypeSymbolExtensions.cs (1)
168IEventSymbol @event => @event.ExplicitInterfaceImplementations.Length > 0,
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ISymbolExtensions.cs\ISymbolExtensions.cs (1)
87IEventSymbol @event => ImmutableArray<ISymbol>.CastUp(@event.ExplicitInterfaceImplementations),