获取与方面相关的信息

时间:2012-10-06 07:03:20

标签: c# .net postsharp aop

假设我有这些结构

class ss
{

 public void createfile() 
    { 
        StreamWriter sw= new StreamWriter("d:/test.txt");     
    }
}

我需要在哪里使用StreamWriter?

考虑到我已经使用下面的代码作为

[assembly: MyAspect(AttributeTargetAssembly="mscorlib", AttributeTargetTypes="System.IO.File", AttributeTargetMembers="Create"]

for file.create method ..

它工作得很好..

有没有办法解决这个问题......

等待您的回复

1 个答案:

答案 0 :(得分:0)

您可能想稍微澄清一下您的问题,我不知道您是否看过以下链接......

http://www.codeproject.com/Articles/337564/Aspect-Oriented-Programming-Using-Csharp-and-PostS

然而,它提供了一个很好的例子,说明如何以与你描述的方式类似的方式使用postharp。