StoreName.cs 541 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // StoreName.cs - System.Security.Cryptography.X509Certificates.StoreName
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. #if NET_1_2
  10. using System;
  11. namespace System.Security.Cryptography.X509Certificates {
  12. // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com
  13. public enum StoreName {
  14. AddressBook,
  15. AuthRoot,
  16. CertificateAuthority,
  17. Disallowed,
  18. My,
  19. Root,
  20. TrustedPeople,
  21. TrustedPublisher
  22. }
  23. }
  24. #endif