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