5 references to IsAutoProperty
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
326
=> symbol.
IsAutoProperty
() ? FeaturesResources.auto_property : FeaturesResources.property_;
3125
if (isDeleteEdit && !customProperty.
IsAutoProperty
())
4239
if (oldMethod is { MethodKind: MethodKind.PropertyGet or MethodKind.PropertySet, AssociatedSymbol: IPropertySymbol oldProperty } && !oldProperty.
IsAutoProperty
() &&
4240
newMethod is { MethodKind: MethodKind.PropertyGet or MethodKind.PropertySet, AssociatedSymbol: IPropertySymbol newProperty } && newProperty.
IsAutoProperty
() &&
EditAndContinue\Utilities\Extensions.cs (1)
170
=> symbol is IPropertySymbol property &&
IsAutoProperty
(property);