X509IncludeOption.cs 483 B

1234567891011121314151617181920212223242526
  1. //
  2. // X509IncludeOption.cs - System.Security.Cryptography.X509IncludeOption
  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 X509IncludeOption {
  14. None,
  15. ExcludeRoot,
  16. EndCertOnly,
  17. WholeChain
  18. }
  19. }
  20. #endif