11 overrides of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic (11)
Binding\Binder_XmlLiterals.vb (1)
1591Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType_PropertySymbol.vb (1)
143Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\Metadata\PE\PEPropertySymbol.vb (1)
344Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
268Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\SignatureOnlyPropertySymbol.vb (1)
142Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
1723Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\Source\SourcePropertySymbol.vb (1)
863Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\SubstitutedPropertySymbol.vb (1)
105Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\SynthesizedSymbols\SynthesizedOverridingWitheventsProperty.vb (1)
106Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\SynthesizedSymbols\SynthesizedPropertyBase.vb (1)
74Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
Symbols\Tuples\TuplePropertySymbol.vb (1)
80Public Overrides ReadOnly Property ExplicitInterfaceImplementations As ImmutableArray(Of PropertySymbol)
31 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic (5)
Symbols\PropertySymbol.vb (1)
540Return ImmutableArrayExtensions.Cast(Of PropertySymbol, IPropertySymbol)(Me.ExplicitInterfaceImplementations)
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
282Dim impls = Me.UnderlyingProperty.ExplicitInterfaceImplementations
Symbols\Source\ImplementsHelper.vb (1)
29Return StaticCast(Of Symbol).From(DirectCast(member, PropertySymbol).ExplicitInterfaceImplementations)
Symbols\SubstitutedPropertySymbol.vb (1)
108_originalDefinition.ExplicitInterfaceImplementations,
Symbols\Tuples\TuplePropertySymbol.vb (1)
82Return Me._underlyingProperty.ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
CodeGen\CodeGenTests.vb (2)
10437Assert.Equal(c1Current1.ExplicitInterfaceImplementations(0), 10438c2Current2.ExplicitInterfaceImplementations(0))
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Semantics\InitOnlyMemberTests.vb (2)
2947Assert.Empty(p.ExplicitInterfaceImplementations.Single().TypeCustomModifiers) 3030Assert.NotEmpty(p.ExplicitInterfaceImplementations.Single().TypeCustomModifiers)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (22)
SymbolsTests\DefaultInterfaceImplementationTests.vb (4)
4247Dim i1P1 As PropertySymbol = p1.ExplicitInterfaceImplementations.Single() 4308Dim i1P1 As PropertySymbol = p1.ExplicitInterfaceImplementations.Single() 4375Dim i1P1 As PropertySymbol = p1.ExplicitInterfaceImplementations.Single() 4438Dim i1P1 As PropertySymbol = p1.ExplicitInterfaceImplementations.Single()
SymbolsTests\Retargeting\RetargetingTests.vb (2)
307implemented_p = p.ExplicitInterfaceImplementations(0) 331implemented_p = c.GetMember(Of PropertySymbol)("P").ExplicitInterfaceImplementations(0)
SymbolsTests\Source\ImplementsTests.vb (12)
2247Assert.Equal(1, fooX.ExplicitInterfaceImplementations.Length) 2250Assert.Equal(ifooTypeStyleWithString, fooX.ExplicitInterfaceImplementations(0)) 2253Assert.Equal(1, fooY.ExplicitInterfaceImplementations.Length) 2255Assert.Equal(ifooTypeStyleWithInt, fooY.ExplicitInterfaceImplementations(0)) 2258Assert.Equal(0, fooStyle.ExplicitInterfaceImplementations.Length) 2259Assert.Equal(0, barStyle.ExplicitInterfaceImplementations.Length) 2430Assert.Equal(1, barX.ExplicitInterfaceImplementations.Length) 2431Assert.Equal(ifooTypeStyleWithString, barX.ExplicitInterfaceImplementations(0)) 2435Assert.Equal(1, fooY.ExplicitInterfaceImplementations.Length) 2436Assert.Equal(ifooTypeStyleWithInt, fooY.ExplicitInterfaceImplementations(0)) 2440Assert.Equal(0, fooStyle.ExplicitInterfaceImplementations.Length) 2442Assert.Equal(0, barStyle.ExplicitInterfaceImplementations.Length)
SymbolsTests\Source\PropertyTests.vb (1)
8188Assert.Equal(interfaceProperty, classProperty.ExplicitInterfaceImplementations.Single())
SymbolsTests\StaticAbstractMembersInInterfacesTests.vb (3)
893Assert.Empty(i1P1.ExplicitInterfaceImplementations) 942Assert.Empty(i1P1.ExplicitInterfaceImplementations) 991Assert.Empty(i1P1.ExplicitInterfaceImplementations)