<PackageReference Include="Castle.Core" Version="4.0.0-alpha001" />

IAttributeDisassembler

public interface IAttributeDisassembler
Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by Dynamic Proxy.
using System; using System.Reflection.Emit; namespace Castle.DynamicProxy { public interface IAttributeDisassembler { CustomAttributeBuilder Disassemble(Attribute attribute); } }