Merge pull request #1135 from kitsilanosoftware/rpm-spec-dead-entries
[mono.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / X509KeyStorageFlags.cs
index 34283113248bb54a556e750751b9ea15564e0463..ce375c2aeacecde9a7cf1cb2878da7bb7a067072 100644 (file)
@@ -26,8 +26,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Runtime.InteropServices;
 
 namespace System.Security.Cryptography.X509Certificates {
@@ -37,6 +35,7 @@ namespace System.Security.Cryptography.X509Certificates {
        [ComVisible (true)]
        public enum X509KeyStorageFlags {
                DefaultKeySet = 0,
+               // not supported by Silverlight 2.0 (NET_2_1)
                UserKeySet = 1,
                MachineKeySet = 2,
                Exportable = 4,
@@ -45,4 +44,3 @@ namespace System.Security.Cryptography.X509Certificates {
        }
 }
 
-#endif