Mercurial > pub > bltoolkit
annotate Source/Aspects/NoLogAttribute.cs @ 9:1e85f66cf767 default tip
update bltoolkit
| author | nickolay |
|---|---|
| date | Thu, 05 Apr 2018 20:53:26 +0300 |
| parents | f990fcb411a9 |
| children |
| rev | line source |
|---|---|
| 0 | 1 using System; |
| 2 | |
| 3 namespace BLToolkit.Aspects | |
| 4 { | |
| 5 /// <summary> | |
| 6 /// http://www.bltoolkit.net/Doc/Aspects/index.htm | |
| 7 /// </summary> | |
| 8 [AttributeUsage( | |
| 9 AttributeTargets.Class | | |
| 10 AttributeTargets.Interface | | |
| 11 AttributeTargets.Property | | |
| 12 AttributeTargets.Method, | |
| 13 AllowMultiple=true)] | |
| 14 public class NoLogAttribute : NoInterceptionAttribute | |
| 15 { | |
| 16 public NoLogAttribute() | |
| 17 : base(typeof(LoggingAspect), InterceptType.OnCatch | InterceptType.OnFinally) | |
| 18 { | |
| 19 } | |
| 20 } | |
| 21 } |
