Mercurial > pub > bltoolkit
annotate Source/Aspects/NoLogAttribute.cs @ 5:f7d63a092920
Исправлено условие Where в тех случаях, когда репозитарий не является генериком
author | cin |
---|---|
date | Tue, 10 Mar 2015 16:02:11 +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 } |