SuppressUnmanagedCodeSecurityAttribute.cs 364 B

123456789101112131415
  1. //
  2. // System.Security.SuppressUnmanagedCodeSecurityAttribute.cs
  3. //
  4. // Author:
  5. // Nick Drochak([email protected])
  6. //
  7. // (C) Nick Drochak
  8. //
  9. namespace System.Security {
  10. [AttributeUsage (AttributeTargets.Class | AttributeTargets.Method |
  11. AttributeTargets.Interface)]
  12. public sealed class SuppressUnmanagedCodeSecurityAttribute : Attribute {}
  13. }