13 overrides of AssociatedSymbol
Microsoft.CodeAnalysis.VisualBasic (13)
Symbols\ErrorMethodSymbol.vb (1)
30Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\Metadata\PE\PEMethodSymbol.vb (1)
601Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\ReducedExtensionMethodSymbol.vb (1)
545Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\Retargeting\RetargetingMethodSymbol.vb (1)
219Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\SignatureOnlyMethodSymbol.vb (1)
186Public Overrides ReadOnly Property AssociatedSymbol() As Symbol
Symbols\Source\LambdaSymbol.vb (1)
101Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\Source\SourceMethodSymbol.vb (1)
614Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
1103Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\SubstitutedMethodSymbol.vb (1)
102Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\SynthesizedSymbols\SynthesizedDelegateMethodSymbol.vb (1)
77Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\SynthesizedSymbols\SynthesizedGlobalMethodBase.vb (1)
198Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\SynthesizedSymbols\SynthesizedMethodBase.vb (1)
31Public Overrides ReadOnly Property AssociatedSymbol As Symbol
Symbols\Tuples\TupleMethodSymbol.vb (1)
44Public Overrides ReadOnly Property AssociatedSymbol As Symbol
29 references to AssociatedSymbol
Microsoft.CodeAnalysis.VisualBasic (29)
Binding\SyntheticBoundTrees\SynthesizedPropertyAccessorBase.vb (1)
21Dim propertySymbol = DirectCast(accessor.AssociatedSymbol, PropertySymbol)
Symbols\EmbeddedSymbols\EmbeddedSymbolManager.SymbolsCollection.vb (1)
237AddReferencedSymbolWithDependents(DirectCast(symbol, MethodSymbol).AssociatedSymbol, allSymbols)
Symbols\Metadata\PE\PEPropertyOrEventHelpers.vb (1)
38Dim associatedProperty = TryCast(implementedAccessor.AssociatedSymbol, T)
Symbols\MethodSymbol.vb (5)
321If Me.IsAccessor AndAlso Me.AssociatedSymbol.Kind = SymbolKind.Property Then 323Return DirectCast(Me.AssociatedSymbol, PropertySymbol).GetAccessorOverride(getter:=(MethodKind = MethodKind.PropertyGet)) 484Return Me.AssociatedSymbol 1130Return Me.AssociatedSymbol 1196Return Me.AssociatedSymbol
Symbols\ObsoleteAttributeHelpers.vb (4)
62symbol = DirectCast(symbol, MethodSymbol).AssociatedSymbol 161If symbol.IsAccessor() AndAlso (DirectCast(symbol, MethodSymbol).AssociatedSymbol).Kind = SymbolKind.Property Then 167accessorString, accessorSymbol.AssociatedSymbol) 170accessorString, accessorSymbol.AssociatedSymbol, data.Message)
Symbols\Retargeting\RetargetingMethodSymbol.vb (1)
221Dim propertyOrEvent = _underlyingMethod.AssociatedSymbol
Symbols\Source\OverrideHidingHelper.vb (4)
259Debug.Assert(unimplementedMembers.Contains(DirectCast(member, MethodSymbol).AssociatedSymbol)) 473Dim associatedHidingSymbol = DirectCast(hidingMember, MethodSymbol).AssociatedSymbol 531If TypeOf method.AssociatedSymbol Is EventSymbol Then 536Return RequiresExplicitOverride(DirectCast(method.AssociatedSymbol, PropertySymbol))
Symbols\Source\SourceParameterSymbol.vb (1)
122Dim containingProperty = TryCast(containingMethod.AssociatedSymbol, PropertySymbol)
Symbols\SubstitutedNamedType.vb (8)
464Debug.Assert(memberMethod.AssociatedSymbol IsNot Nothing) 465Dim propertySymbol = SubstituteTypeParametersForMemberProperty(DirectCast(memberMethod.AssociatedSymbol, PropertySymbol)) 469Debug.Assert(memberMethod.AssociatedSymbol IsNot Nothing) 470Dim eventSymbol = SubstituteTypeParametersForMemberEvent(DirectCast(memberMethod.AssociatedSymbol, EventSymbol)) 474Debug.Assert(memberMethod.AssociatedSymbol IsNot Nothing) 475Dim eventSymbol = SubstituteTypeParametersForMemberEvent(DirectCast(memberMethod.AssociatedSymbol, EventSymbol)) 479Debug.Assert(memberMethod.AssociatedSymbol IsNot Nothing) 480Dim eventSymbol = SubstituteTypeParametersForMemberEvent(DirectCast(memberMethod.AssociatedSymbol, EventSymbol))
Symbols\SymbolExtensions.vb (1)
238Return methodSymbol.AssociatedSymbol IsNot Nothing
Symbols\SynthesizedSymbols\SynthesizedParameterSymbol.vb (1)
119Return DirectCast(method.AssociatedSymbol, SourcePropertySymbol).ReturnTypeMarshallingInformation
Symbols\Tuples\TupleMethodSymbol.vb (1)
46Return Me._containingType.GetTupleMemberSymbolForUnderlyingMember(Of Symbol)(Me._underlyingMethod.ConstructedFrom.AssociatedSymbol)