X509IssuerSerial.cs 635 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // X509IssuerSerial.cs - X509IssuerSerial implementation for XML Encryption
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. // Sebastien Pouliot <[email protected]>
  7. //
  8. // Copyright (C) Tim Coleman, 2004
  9. // Copyright (C) 2004 Novell Inc. (http://www.novell.com)
  10. //
  11. namespace System.Security.Cryptography.Xml {
  12. #if NET_2_0
  13. public
  14. #else
  15. // structure was undocumented (but present) before Fx 2.0
  16. internal
  17. #endif
  18. struct X509IssuerSerial {
  19. public string IssuerName;
  20. public string SerialNumber;
  21. public X509IssuerSerial (string issuer, string serial)
  22. {
  23. IssuerName = issuer;
  24. SerialNumber = serial;
  25. }
  26. }
  27. }