X509ChainElement.cs 813 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // X509ChainElement.cs - System.Security.Cryptography.X509Certificates.X509ChainElement
  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 class X509ChainElement {
  14. // constructors
  15. // only accessible from X509Chain.ChainElements
  16. internal X509ChainElement () {}
  17. // properties
  18. [MonoTODO]
  19. public X509CertificateEx Certificate {
  20. get { return null; }
  21. }
  22. [MonoTODO]
  23. public X509ChainStatus[] ChainElementStatus {
  24. get { return null; }
  25. }
  26. [MonoTODO]
  27. public string Information {
  28. get { return null; }
  29. }
  30. }
  31. }
  32. #endif