// // System.Security.Cryptography CryptoStreamMode enumeration // // Authors: // Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu) // // Copyright 2001 by authors. // namespace System.Security.Cryptography { /// /// FIXME (the comment): Whether the crypto-stream is in read mode or write mode? /// public enum CryptoStreamMode { Read, Write } }