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:
Diffstat (limited to 'mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs')
-rw-r--r--mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs78
1 files changed, 0 insertions, 78 deletions
diff --git a/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs b/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs
deleted file mode 100644
index 8a73db56cd8..00000000000
--- a/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs
+++ /dev/null
@@ -1,78 +0,0 @@
-//
-// System.IO.IsolatedStorage.cs
-//
-// Author: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System.Security;
-using System.Security.Permissions;
-
-namespace System.IO.IsolatedStorage
-{
- public abstract class IsolatedStorage : MarshalByRefObject
- {
- // Constructor
- protected IsolatedStorage ()
- : base ()
- {
- }
-
- // Properties
- [MonoTODO]
- public object AssemblyIdentity
- {
- get { return null; }
- }
-
- [CLSCompliant (false)]
- [MonoTODO]
- public virtual ulong CurrentSize
- {
- get { return 0; }
- }
-
- [MonoTODO]
- public object DomainIdentity
- {
- get { return null; }
- }
-
- [CLSCompliant (false)]
- [MonoTODO]
- public virtual ulong MaximumSize
- {
- get { return 0; }
- }
-
- [MonoTODO]
- public IsolatedStorageScope Scope
- {
- get { return 0; }
- }
-
- [MonoTODO]
- protected virtual char SeparatorExternal
- {
- get { return Char.MinValue; }
- }
-
- [MonoTODO]
- protected virtual char SeparatorInternal
- {
- get { return Char.MinValue; }
- }
-
- // Methods
- protected abstract IsolatedStoragePermission GetPermission (PermissionSet ps);
-
- [MonoTODO]
- protected void InitStore (IsolatedStorageScope scope, Type domainEvidenceType,
- Type assemblyEvidenceType)
- {
- }
-
- public abstract void Remove ();
- }
-}