Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-12-15 14:11:08 +0300
committerMarek Safar <marek.safar@gmail.com>2010-12-15 14:12:07 +0300
commitbd05c6c83699e742e93eec754bf771ee111ff3b1 (patch)
treeded2e63b030f121ca6aff4df4b50e6b5e3e90345 /mcs/class/corlib/System.IO.IsolatedStorage
parentd61516587945cc363fa6fcc5fb8035099e65849a (diff)
Some .net 4.0 api compatibility fixes
Diffstat (limited to 'mcs/class/corlib/System.IO.IsolatedStorage')
-rw-r--r--mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs b/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs
index 112a1035695..0d3b391fbc6 100644
--- a/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs
+++ b/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs
@@ -29,8 +29,9 @@
#if NET_4_0
namespace System.IO.IsolatedStorage
{
- public enum IsolatedStorageSecurityOptions {
- IncreaseQuotaForApplication
+ public enum IsolatedStorageSecurityOptions
+ {
+ IncreaseQuotaForApplication = 4
}
}