3 implementations of FindFieldOrPropertyForAttributeArgument
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSemanticFacts.cs (1)
272public ISymbol? FindFieldOrPropertyForAttributeArgument(SemanticModel semanticModel, SyntaxNode argument, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSemanticFacts.vb (1)
256Public Function FindFieldOrPropertyForAttributeArgument(semanticModel As SemanticModel, node As SyntaxNode, cancellationToken As CancellationToken) As ISymbol Implements ISemanticFacts.FindFieldOrPropertyForAttributeArgument
Microsoft.CodeAnalysis.Workspaces (1)
AbstractSemanticFactsService.cs (1)
193public ISymbol FindFieldOrPropertyForAttributeArgument(SemanticModel semanticModel, SyntaxNode argumentNode, CancellationToken cancellationToken)
3 references to FindFieldOrPropertyForAttributeArgument
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\EmbeddedLanguageDetector.cs (1)
272var fieldOrProperty = Info.SemanticFacts.FindFieldOrPropertyForAttributeArgument(semanticModel, argument, cancellationToken);
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSemanticFacts.vb (1)
256Public Function FindFieldOrPropertyForAttributeArgument(semanticModel As SemanticModel, node As SyntaxNode, cancellationToken As CancellationToken) As ISymbol Implements ISemanticFacts.FindFieldOrPropertyForAttributeArgument
Microsoft.CodeAnalysis.Workspaces (1)
AbstractSemanticFactsService.cs (1)
194=> SemanticFacts.FindFieldOrPropertyForAttributeArgument(semanticModel, argumentNode, cancellationToken);