1 write to _getMethod
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourcePropertySymbolBase.cs (1)
190
_getMethod
= CreateGetAccessorSymbol(hasAutoPropertyGet, diagnostics);
13 references to _getMethod
Microsoft.CodeAnalysis.CSharp (13)
Symbols\Source\SourcePropertySymbolBase.cs (13)
336
else if (property.
_getMethod
is { IsAutoPropertyAccessor: false } getMethod
648
return
_getMethod
;
828
(
_getMethod
is null || (_propertyFlags & Flags.HasAutoPropertyGet) != 0 ||
_getMethod
.IsDeclaredReadOnly))
938
Debug.Assert(
_getMethod
is object);
945
else if ((
_getMethod
.LocalAccessibility != Accessibility.NotApplicable) &&
951
else if (
_getMethod
.LocalDeclaredReadOnly && _setMethod.LocalDeclaredReadOnly)
958
CheckAbstractPropertyAccessorNotPrivate(
_getMethod
, diagnostics);
985
var accessor =
_getMethod
?? _setMethod;
1004
CheckAccessibilityMoreRestrictive(
_getMethod
, diagnostics);
1628
return isNullOrValidAccessor(
_getMethod
) &&
1804
if (
_getMethod
is not null)
1805
DeclaringCompilation.SymbolDeclaredEvent(
_getMethod
);