5 overrides of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic (5)
Symbols\Metadata\PE\PEEventSymbol.vb (1)
272Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of EventSymbol)
Symbols\Retargeting\RetargetingEventSymbol.vb (1)
99Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of EventSymbol)
Symbols\Source\SourceEventSymbol.vb (1)
510Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of EventSymbol)
Symbols\SubstitutedEventSymbol.vb (1)
191Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of EventSymbol)
Symbols\Tuples\TupleEventSymbol.vb (1)
74Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of EventSymbol)
17 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic (6)
Symbols\EventSymbol.vb (2)
124Return ExplicitInterfaceImplementations.Any() 322Return StaticCast(Of IEventSymbol).From(Me.ExplicitInterfaceImplementations)
Symbols\Retargeting\RetargetingEventSymbol.vb (1)
113Dim impls = Me.UnderlyingEvent.ExplicitInterfaceImplementations
Symbols\Source\ImplementsHelper.vb (1)
31Return StaticCast(Of Symbol).From(DirectCast(member, EventSymbol).ExplicitInterfaceImplementations)
Symbols\SubstitutedEventSymbol.vb (1)
196_originalDefinition.ExplicitInterfaceImplementations,
Symbols\Tuples\TupleEventSymbol.vb (1)
76Return Me._underlyingEvent.ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (11)
SymbolsTests\DefaultInterfaceImplementationTests.vb (1)
11514Assert.Same(i1WinRT, i2WinRT.ExplicitInterfaceImplementations.Single())
SymbolsTests\Metadata\PE\LoadingEvents.vb (5)
169Dim explicitImpl = classEvent.ExplicitInterfaceImplementations.Single() 187Dim explicitImpl = classEvent.ExplicitInterfaceImplementations.Single() 205Dim explicitImpl = classEvent.ExplicitInterfaceImplementations.Single() 226Dim explicitImpl = classEvent.ExplicitInterfaceImplementations.Single() 261Dim innerClassImplementingEvent = innerClassEvent.ExplicitInterfaceImplementations.Single()
SymbolsTests\Metadata\WinMdEventTest.vb (2)
950Dim substitutedNormalEvent = implementingNormalEvent.ExplicitInterfaceImplementations.Single() 951Dim substitutedWinRTEvent = implementingWinRTEvent.ExplicitInterfaceImplementations.Single()
SymbolsTests\StaticAbstractMembersInInterfacesTests.vb (3)
1781Assert.Empty(i1E1.ExplicitInterfaceImplementations) 1830Assert.Empty(i1E1.ExplicitInterfaceImplementations) 1879Assert.Empty(i1E1.ExplicitInterfaceImplementations)