* IsolatedStorageFile.cs: GetUserStoreForSite is only throwing a
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>
Mon, 7 Jun 2010 23:59:34 +0000 (23:59 -0000)
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>
Mon, 7 Jun 2010 23:59:34 +0000 (23:59 -0000)
NotSupportedException.
* IsolatedStorageFileStream.cs: Implement Flush by calling the base impl.

2010-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>

svn path=/trunk/mcs/; revision=158612

mcs/class/corlib/System.IO.IsolatedStorage/ChangeLog
mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageFileStream.cs

index 589f9d5e648ff69eb05536548bcd5235a72c09d1..e1fb0901edaeef4ae3f032c715b9fe636e1e4ee0 100644 (file)
@@ -1,3 +1,9 @@
+2010-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * IsolatedStorageFile.cs: GetUserStoreForSite is only throwing a
+       NotSupportedException.
+       * IsolatedStorageFileStream.cs: Implement Flush by calling the base impl.
+
 2010-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
 
        * IsolatedStorageFile.cs: Remove and DeleteFile must report any
index 0bdaf3eecc3570a9029161e8f17658155c0eba59..1ce8017cfbc27a15d84266432123eaa8b8a95be3 100644 (file)
@@ -210,6 +210,13 @@ namespace System.IO.IsolatedStorage {
                        base.Flush ();
                }
 
+#if NET_4_0
+               public override void Flush (bool flushToDisk)
+               {
+                       base.Flush (flushToDisk);
+               }
+#endif
+
                public override int Read (byte[] buffer, int offset, int count)
                {
                        return base.Read (buffer, offset, count);