1

これは、IMethodDecorator インターフェイスを拡張する属性クラスの私のコードです。

[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Field)]
public class LogAttribute : Attribute, IMethodDecorator
{
    ILogger log = Logger.Factory.GetLogger<Logger>();
    String methodName;


    public LogAttribute() {
    }

    public void Init(object instance, MethodBase method, object[] args)
    {
        methodName = method.Name;
    }

    public void OnEntry()
    {
        Console.WriteLine(methodName);
        log.Debug(methodName);
    }

    public void OnExit()
    {
        Console.WriteLine("Exiting Method");
    }

    public void OnException(Exception exception)
    {
        Console.WriteLine("Exception was thrown");
    }

}

これをそのまま使えるようにしたい

[log("some logmessage")]
void method() 
{
// some code  
}

何か案は ?Method Decorator Fody パッケージを使用しています。

4

1 に答える 1

2

だから私は私の問題の解決策を見つけました。

基本的に、クラスを次のように変更しました-

[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Field)]
public class LogAttribute : Attribute, IMethodDecorator
{
    ILogger log = Logger.Factory.GetLogger<Logger>();
    String methodName;

    public String logMessage { get; set; }

    private Lazy<IEnumerable<PropertyInfo>> _properties;
    public MethodBase DecoratedMethod { get; private set; }

    public LogAttribute() {
        this._properties = new Lazy<IEnumerable<PropertyInfo>>(() =>
         this.GetType()
             .GetRuntimeProperties()
             .Where(p => p.CanRead && p.CanWrite));
    }


    public void Init(object instance, MethodBase method, object[] args)
    {
        this.UpdateFromInstance(method);
        methodName = method.Name;
    }

    public void OnEntry()
    {
        log.Debug("Inside" + methodName);
        log.Debug(logMessage);
    }

    public void OnExit()
    {
        Console.WriteLine("Exiting Method");
    }

    public void OnException(Exception exception)
    {
        Console.WriteLine("Exception was thrown");
    }

    private void UpdateFromInstance(MethodBase method)
    {
        this.DecoratedMethod = method;
        var declaredAttribute = method.GetCustomAttribute(this.GetType());

        foreach (var property in this._properties.Value)
            property.SetValue(this, property.GetValue(declaredAttribute));

    }

}

これで、次のようなカスタム属性を使用できます

 [Log(logMessage = "This is Debug Message")]
于 2016-06-01T08:31:59.580 に答える