| 123456789101112131415161718 |
- //
- // System.Security.Cryptography CryptoStreamMode enumeration
- //
- // Authors:
- // Matthew S. Ford ([email protected])
- //
- // Copyright 2001 by authors.
- //
- namespace System.Security.Cryptography {
- [Serializable]
- public enum CryptoStreamMode {
- Read,
- Write
- }
- }
|