33 references to IsolatedStorageContainment
mscorlib (30)
system\io\isolatedstorage\isolatedstorage.cs (9)
1078
IsolatedStorageContainment
.DomainIsolationByUser,
1086
IsolatedStorageContainment
.AssemblyIsolationByUser,
1094
IsolatedStorageContainment
.DomainIsolationByRoamingUser,
1102
IsolatedStorageContainment
.AssemblyIsolationByRoamingUser,
1110
IsolatedStorageContainment
.DomainIsolationByMachine,
1118
IsolatedStorageContainment
.AssemblyIsolationByMachine,
1126
IsolatedStorageContainment
.ApplicationIsolationByUser,
1134
IsolatedStorageContainment
.ApplicationIsolationByMachine,
1142
IsolatedStorageContainment
.ApplicationIsolationByRoamingUser,
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2345
IsolatedStorageContainment
.AdministerIsolatedStorageByUser,
system\security\permissions\isolatedstoragefilepermission.cs (5)
24
internal IsolatedStorageFilePermission(
IsolatedStorageContainment
UsageAllowed,
62
union.m_allowed = (
IsolatedStorageContainment
)max((long)m_allowed,(long)operand.m_allowed);
75
(m_allowed ==
IsolatedStorageContainment
.None));
126
intersection.m_allowed = (
IsolatedStorageContainment
)min((long)m_allowed,(long)operand.m_allowed);
132
(intersection.m_allowed ==
IsolatedStorageContainment
.None))
system\security\permissions\isolatedstoragepermission.cs (13)
60
internal
IsolatedStorageContainment
m_allowed;
76
m_allowed =
IsolatedStorageContainment
.UnrestrictedIsolatedStorage;
84
m_allowed =
IsolatedStorageContainment
.None;
92
internal IsolatedStoragePermission(
IsolatedStorageContainment
UsageAllowed,
103
internal IsolatedStoragePermission(
IsolatedStorageContainment
UsageAllowed,
158
public
IsolatedStorageContainment
UsageAllowed {
176
return m_allowed ==
IsolatedStorageContainment
.UnrestrictedIsolatedStorage;
210
esd.AddAttribute( "Allowed", Enum.GetName( typeof(
IsolatedStorageContainment
), m_allowed ) );
240
m_allowed =
IsolatedStorageContainment
.None; // default if no match
244
m_allowed =
IsolatedStorageContainment
.UnrestrictedIsolatedStorage;
251
m_allowed = (
IsolatedStorageContainment
)Enum.Parse( typeof(
IsolatedStorageContainment
), allowed );
254
if (m_allowed ==
IsolatedStorageContainment
.UnrestrictedIsolatedStorage)
system\security\permissions\permissionattributes.cs (2)
1000
internal
IsolatedStorageContainment
m_allowed;
1040
public
IsolatedStorageContainment
UsageAllowed {
PresentationFramework (1)
src\Framework\System\Windows\Interop\DocobjHost.cs (1)
960
storagePermission.UsageAllowed =
IsolatedStorageContainment
.DomainIsolationByUser;
System (2)
sys\system\configuration\ClientSettingsStore.cs (2)
495
storagePerm.UsageAllowed = _isRoaming?
IsolatedStorageContainment
.DomainIsolationByRoamingUser :
496
IsolatedStorageContainment
.DomainIsolationByUser;