Blame view

netcore/src/Infrastructure/NCC/Dependency/Attributes/SuppressSnifferAttribute.cs 396 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
  using System;
  
  namespace NCC.Dependency
  {
      /// <summary>
      /// 不被扫描和发现的特性
      /// </summary>
      /// <remarks>用于程序集扫描类型或方法时候</remarks>
      [SuppressSniffer, AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Enum | AttributeTargets.Struct)]
      public class SuppressSnifferAttribute : Attribute
      {
      }
  }