11 overrides of GetMethod
Microsoft.CodeAnalysis.VisualBasic (11)
Symbols\AnonymousTypes\PublicSymbols\AnonymousType_PropertyPublicSymbol.vb (1)
47
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType_PropertySymbol.vb (1)
83
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Metadata\PE\PEPropertySymbol.vb (1)
291
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
103
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\SignatureOnlyPropertySymbol.vb (1)
148
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
1746
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Source\SourcePropertySymbol.vb (1)
673
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Source\SynthesizedMyGroupCollectionPropertySymbol.vb (1)
61
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\SubstitutedPropertySymbol.vb (1)
118
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\SynthesizedSymbols\SynthesizedOverridingWitheventsProperty.vb (1)
112
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
Symbols\Tuples\TuplePropertySymbol.vb (1)
62
Public Overrides ReadOnly Property
GetMethod
As MethodSymbol
30 references to GetMethod
Microsoft.CodeAnalysis.VisualBasic (30)
Binding\SyntheticBoundTrees\SynthesizedPropertyAccessorBase.vb (1)
49
Dim baseGetSym = propertySymbol.
GetMethod
.OverriddenMethod
Emit\PropertySymbolAdapter.vb (2)
29
Dim getter = AdaptedPropertySymbol.
GetMethod
?.GetCciAdapter()
50
Return AdaptedPropertySymbol.
GetMethod
?.GetCciAdapter()
Symbols\EmbeddedSymbols\EmbeddedSymbolManager.SymbolsCollection.vb (2)
258
If [property].
GetMethod
IsNot Nothing Then
259
AddReferencedSymbolWithDependents([property].
GetMethod
, allSymbols)
Symbols\Metadata\PE\PEPropertySymbol.vb (2)
364
Dim getMethod As MethodSymbol = prop.
GetMethod
422
Dim getMethod = [property].
GetMethod
Symbols\PropertySymbol.vb (4)
129
Return (Me.
GetMethod
Is Nothing)
238
Dim getMethod = [property].
GetMethod
331
Return If(getter, overriddenProp.
GetMethod
, overriddenProp.SetMethod)
546
Return Me.
GetMethod
Symbols\PropertySymbolExtensions.vb (1)
46
Dim accessor = [property].
GetMethod
Symbols\Retargeting\RetargetingPropertySymbol.vb (2)
105
Return If(_underlyingProperty.
GetMethod
Is Nothing, Nothing, RetargetingTranslator.Retarget(_underlyingProperty.
GetMethod
))
Symbols\Source\ImplementsHelper.vb (4)
367
Dim accessorToCheck As MethodSymbol = [property].
GetMethod
473
Dim implementedPropertyGetMethod As MethodSymbol = implementedProperty.
GetMethod
485
If (implementedPropertyGetMethod IsNot Nothing AndAlso implementingProperty.
GetMethod
Is Nothing) OrElse
494
implementingProperty.
GetMethod
IsNot Nothing AndAlso implementingProperty.SetMethod IsNot Nothing Then
Symbols\Source\OverrideHidingHelper.vb (2)
923
CheckOverridePropertyAccessor(overridingProperty.
GetMethod
, overriddenProperty.
GetMethod
, diagnostics)
Symbols\Source\SourceMemberMethodSymbol.vb (2)
981
If prop.
GetMethod
IsNot Nothing AndAlso
982
prop.
GetMethod
.ReturnType.IsClassOrInterfaceType AndAlso
Symbols\Source\SourceMethodSymbol.vb (1)
1068
Dim accessor = If(syntax.Kind = SyntaxKind.GetAccessorStatement, propertySymbol.
GetMethod
, propertySymbol.SetMethod)
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (2)
398
Dim getter As MethodSymbol = prop.
GetMethod
613
If LexicalOrderSymbolComparer.Instance.Compare(prop.
GetMethod
, prop.SetMethod) <= 0 Then
Symbols\Source\SourcePropertySymbol.vb (1)
903
Dim accessor = If(getter, implementedProp.
GetMethod
, implementedProp.SetMethod)
Symbols\SubstitutedNamedType.vb (3)
318
Dim getMethod = If(memberProperty.
GetMethod
Is Nothing, Nothing, SubstituteTypeParametersForMemberMethod(memberProperty.
GetMethod
))
370
Dim getMethod = GetMethodSubstitute(methodSubstitutions, memberProperty.
GetMethod
)
Symbols\Tuples\TuplePropertySymbol.vb (1)
64
Return Me._containingType.GetTupleMemberSymbolForUnderlyingMember(Of MethodSymbol)(Me._underlyingProperty.
GetMethod
)