| 1234567891011121314151617181920 |
- //
- // System.Security.Cryptography CryptoStreamMode enumeration
- //
- // Authors:
- // Matthew S. Ford ([email protected])
- //
- // Copyright 2001 by authors.
- //
- namespace System.Security.Cryptography {
- /// <summary>
- /// FIXME (the comment): Whether the crypto-stream is in read mode or write mode?
- /// </summary>
- public enum CryptoStreamMode {
- Read,
- Write
- }
- }
|