Add license and copyright to all source files in corlib
[mono.git] / mcs / class / corlib / System.IO.IsolatedStorage / IsolatedStorage.cs
1 //
2 // System.IO.IsolatedStorage.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc. http://www.ximian.com
7 //
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Security;
32 using System.Globalization;
33 using System.Security.Permissions;
34
35 namespace System.IO.IsolatedStorage
36 {
37         public abstract class IsolatedStorage : MarshalByRefObject
38         {
39                 // Constructor
40                 protected IsolatedStorage ()
41                         : base ()
42                 {
43                 }
44
45                 protected static IsolatedStorageScope storage_scope;
46
47                 // Properties
48                 [MonoTODO ("Code Identity is CAS related")]
49                 public object AssemblyIdentity {
50                         get {
51                                 throw new NotImplementedException (
52                                         Locale.GetText ("CAS related")); 
53                         }
54                 }
55
56                 [CLSCompliant (false)]
57                 public virtual ulong CurrentSize {
58                         get {
59                                 throw new InvalidOperationException (
60                                         Locale.GetText ("IsolatedStorage does not have a preset CurrentSize."));
61                         }
62                 }
63
64                 [MonoTODO ("Code Identity is CAS related")]
65                 public object DomainIdentity {
66                         get {
67                                 throw new NotImplementedException (
68                                         Locale.GetText ("CAS related")); 
69                         }
70                 }
71
72                 [CLSCompliant (false)]
73                 public virtual ulong MaximumSize {
74                         get {
75                                 throw new InvalidOperationException (
76                                         Locale.GetText ("IsolatedStorage does not have a preset MaximumSize."));
77                         }
78                 }
79
80                 public IsolatedStorageScope Scope {
81                         get { return storage_scope; }
82                 }
83
84                 protected virtual char SeparatorExternal {
85                         get { return System.IO.Path.DirectorySeparatorChar; }
86                 }
87
88                 protected virtual char SeparatorInternal {
89                         get { return '.'; }
90                 }
91
92                 // Methods
93                 protected abstract IsolatedStoragePermission GetPermission (PermissionSet ps);
94
95                 [MonoTODO ("Evidences are CAS related")]
96                 protected void InitStore (
97                         IsolatedStorageScope scope, Type domainEvidenceType,
98                         Type assemblyEvidenceType)
99                 {
100                         // no exception here because this can work without CAS
101                         storage_scope = scope;
102
103                 }
104
105                 public abstract void Remove ();
106         }
107 }