Created
March 4, 2012 04:41
-
-
Save mgroves/1970694 to your computer and use it in GitHub Desktop.
more AOP terminology
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class MyClass | |
| { | |
| [MyAspect] | |
| public void MyMethod() | |
| { | |
| Console.WriteLine("inside of my method"); | |
| } | |
| } | |
| [Serializable] | |
| public class MyAspectAttribute : OnMethodBoundaryAspect | |
| { | |
| public override void OnEntry(MethodExecutionArgs args) | |
| { | |
| Logger.Write("some logging message"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment