2009-06-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / X509KeyStorageFlags.cs
index 34283113248bb54a556e750751b9ea15564e0463..1a2d9af32bbb9cece5c0478c43da56d08eaef313 100644 (file)
@@ -37,11 +37,14 @@ namespace System.Security.Cryptography.X509Certificates {
        [ComVisible (true)]
        public enum X509KeyStorageFlags {
                DefaultKeySet = 0,
+#if !NET_2_1
+               // not supported by Silverlight 2.0 (NET_2_1)
                UserKeySet = 1,
                MachineKeySet = 2,
                Exportable = 4,
                UserProtected = 8,
                PersistKeySet = 16 
+#endif
        }
 }