CryptoStreamMode.cs 282 B

123456789101112131415161718
  1. //
  2. // System.Security.Cryptography CryptoStreamMode enumeration
  3. //
  4. // Authors:
  5. // Matthew S. Ford ([email protected])
  6. //
  7. // Copyright 2001 by authors.
  8. //
  9. namespace System.Security.Cryptography {
  10. [Serializable]
  11. public enum CryptoStreamMode {
  12. Read,
  13. Write
  14. }
  15. }