CryptoStreamMode.cs 400 B

1234567891011121314151617181920
  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. /// <summary>
  11. /// FIXME (the comment): Whether the crypto-stream is in read mode or write mode?
  12. /// </summary>
  13. public enum CryptoStreamMode {
  14. Read,
  15. Write
  16. }
  17. }