exceptionattribute.cs
来自「应用AOP」· CS 代码 · 共 48 行
CS
48 行
//
// Write by Peopleyl 2007-04-13
//
using System;
using Aspect.AopBase;
namespace Aspect.Exception
{
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method)]
public class ExceptionAttribute:AspectAttribute
{
#region ExceptionAttribute Members
private object returnValue;
public ExceptionAttribute()
{}
public ExceptionAttribute(object returnValue)
{
this.returnValue = returnValue;
}
public object ReturnValue
{
get{ return this.returnValue; }
}
#endregion
#region AspectAttribute override Members
public override string Name
{
get
{
return "ExceptionAop";
}
}
public override AspectProperty GetContextProperty(string aopName)
{
return new ExceptionProperty(aopName);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?