2 implementations of IsOnPropertyDeclarationHeader
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\AbstractRefactoringHelpersService.cs (1)
564public bool IsOnPropertyDeclarationHeader(SyntaxNode root, int position, [NotNullWhen(true)] out SyntaxNode? propertyDeclaration)
Microsoft.CodeAnalysis.Workspaces (1)
AbstractHeaderFacts.cs (1)
24public abstract bool IsOnPropertyDeclarationHeader(SyntaxNode root, int position, [NotNullWhen(true)] out SyntaxNode? propertyDeclaration);
2 references to IsOnPropertyDeclarationHeader
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\AbstractRefactoringHelpersService.cs (2)
480if (headerFacts.IsOnPropertyDeclarationHeader(root, location, out var propertyDeclaration)) 565=> HeaderFacts.IsOnPropertyDeclarationHeader(root, position, out propertyDeclaration);