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

IsolatedStorage.cs « System.IO.IsolatedStorage « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a73db56cd8893f72bc9130bd2331b7666721c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// 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 ();
	}
}