我在OperationContract中使用PostSharp - OnMethodBoundaryAspect。虽然这方面似乎没有。我对postharp dll有必要的参考。下面的伪代码。
方面
[Serializable]
[MulticastAttributeUsage(MulticastTargets.Method, Inheritance = MulticastInheritance.Multicast)]
public class LoggingAspect : OnMethodBoundaryAspect
{
//Implementation for entry and exit
}
用法
[ServiceContract]
public interface ITest
{
[OperationContract]
[LoggingAspect(.....)]
void Test();
}
非常感谢任何帮助
答案 0 :(得分:0)
我们需要做以下
感谢AlexD和Daniel Balas的投入