2002-01-14 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CryptoStreamMode.cs
1 //\r
2 // System.Security.Cryptography CryptoStreamMode enumeration\r
3 //\r
4 // Authors:\r
5 //   Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)\r
6 //\r
7 // Copyright 2001 by authors.\r
8 //\r
9 \r
10 namespace System.Security.Cryptography {\r
11 \r
12         /// <summary>\r
13         /// FIXME (the comment): Whether the crypto-stream is in read mode or write mode?\r
14         /// </summary>\r
15         public enum CryptoStreamMode {\r
16                 Read,\r
17                 Write\r
18         }\r
19 }\r
20 \r