X509ChainStatus.cs 718 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // X509ChainStatus.cs - System.Security.Cryptography.X509Certificates.X509ChainStatus
  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 struct X509ChainStatus {
  14. private X509ChainStatusFlags _status;
  15. private string _info;
  16. // properties
  17. public X509ChainStatusFlags Status {
  18. get { return _status; }
  19. set { _status = value; }
  20. }
  21. public string StatusInformation {
  22. get { return _info; }
  23. set { _info = value; }
  24. }
  25. }
  26. }
  27. #endif