如何从 Roslyn 中的 AttributeSyntax 获取 AttributeData

本文关键字:AttributeSyntax 获取 AttributeData 中的 Roslyn | 更新日期: 2024-11-08 11:04:39

标题中的问题。

从类型 AttributeSyntax 的对象中,如何获取相关的AttributeData表示形式以访问元数据?

如何从 Roslyn 中的 AttributeSyntax 获取 AttributeData

您需要

找到应用语法的ISymbol,调用GetAttributes(),并找到ApplicationSyntaxReference与您的AttributeSyntax匹配的返回AttributeData

@SLaks答案是正确的。以下是一些从AttributeListSyntax中检索属性的代码:

using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis;
using System.Collections.Generic;
static class Extensions
{
    public static IReadOnlyList<AttributeData> GetAttributes(this AttributeListSyntax attributes, Compilation compilation)
    {
        // Collect pertinent syntax trees from these attributes
        var acceptedTrees = new HashSet<SyntaxTree>();
        foreach (var attribute in attributes.Attributes)
            acceptedTrees.Add(attribute.SyntaxTree);
        var parentSymbol = attributes.Parent!.GetDeclaredSymbol(compilation)!;
        var parentAttributes = parentSymbol.GetAttributes();
        var ret = new List<AttributeData>();
        foreach (var attribute in parentAttributes)
        {
            if (acceptedTrees.Contains(attribute.ApplicationSyntaxReference!.SyntaxTree))
                ret.Add(attribute);
        }
        return ret;
    }
    public static ISymbol? GetDeclaredSymbol(this SyntaxNode node, Compilation compilation)
    {
        var model = compilation.GetSemanticModel(node.SyntaxTree);
        return model.GetDeclaredSymbol(node);
    }
}
相关文章:
  • 没有找到相关文章