1 implementation of CreateAttributeNode
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
658public abstract SyntaxNode CreateAttributeNode(string name, string value, string? target = null);
1 reference to CreateAttributeNode
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\FileCodeModel_CodeGen.cs (1)
156var attributeNode = CodeModelService.CreateAttributeNode(CodeModelService.GetUnescapedName(name), value, target);