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