3 references to SetMethodDeclaration
Microsoft.CodeAnalysis.CSharp.Features (2)
ReplaceMethodWithProperty\CSharpReplaceMethodWithPropertyService.cs (2)
121var setMethodDeclaration = getAndSetMethods.SetMethodDeclaration as MethodDeclarationSyntax; 246if (getAndSetMethods.SetMethodDeclaration is not MethodDeclarationSyntax setMethodDeclaration || setMethod?.Parameters.Length != 1)
Microsoft.CodeAnalysis.Features (1)
ReplaceMethodWithProperty\AbstractReplaceMethodWithPropertyService.cs (1)
48var setMethodDeclaration = getAndSetMethods.SetMethodDeclaration;