2003-11-09 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / MemoryProtectionScope.cs
1 //
2 // MemoryProtectionScope.cs: Scope for ProtectMemory
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 #if NET_1_2
11
12 using System;
13
14 namespace System.Security.Cryptography {
15
16         public enum MemoryProtectionScope {
17                 SameProcess,
18                 CrossProcess,
19                 SameLogon
20         } 
21 }
22
23 #endif