⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exceptionproperty.cs

📁 应用AOP
💻 CS
字号:
//
// Write by Peopleyl 2007-04-13
//
using System;
using Aspect.AopBase;
using System.Runtime.Remoting.Messaging;

namespace Aspect.Exception
{
	public class ExceptionProperty:AspectProperty
	{	
		#region ExceptionProperty Members

		public ExceptionProperty(string aopPropertytyName):base(aopPropertytyName)
		{}

		#endregion

		#region AspectProperty override Members

		public override IMessageSink GetServerContextSink(IMessageSink nextSink)
		{
			return new ExceptionSink(nextSink,base.Name);
		}

		#endregion
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -