11 writes to m_allowed
mscorlib (11)
system\security\permissions\isolatedstoragefilepermission.cs (3)
62union.m_allowed = (IsolatedStorageContainment)max((long)m_allowed,(long)operand.m_allowed); 126intersection.m_allowed = (IsolatedStorageContainment)min((long)m_allowed,(long)operand.m_allowed); 147copy.m_allowed = m_allowed;
system\security\permissions\isolatedstoragepermission.cs (8)
76m_allowed = IsolatedStorageContainment.UnrestrictedIsolatedStorage; 84m_allowed = IsolatedStorageContainment.None; 100m_allowed = UsageAllowed; 111m_allowed = UsageAllowed; 160m_allowed = value; 240m_allowed = IsolatedStorageContainment.None; // default if no match 244m_allowed = IsolatedStorageContainment.UnrestrictedIsolatedStorage; 251m_allowed = (IsolatedStorageContainment)Enum.Parse( typeof( IsolatedStorageContainment ), allowed );
13 references to m_allowed
mscorlib (13)
system\security\permissions\isolatedstoragefilepermission.cs (9)
62union.m_allowed = (IsolatedStorageContainment)max((long)m_allowed,(long)operand.m_allowed); 75(m_allowed == IsolatedStorageContainment.None)); 89(operand.m_allowed >= m_allowed)); 126intersection.m_allowed = (IsolatedStorageContainment)min((long)m_allowed,(long)operand.m_allowed); 132(intersection.m_allowed == IsolatedStorageContainment.None)) 147copy.m_allowed = m_allowed;
system\security\permissions\isolatedstoragepermission.cs (4)
163return m_allowed; 176return m_allowed == IsolatedStorageContainment.UnrestrictedIsolatedStorage; 210esd.AddAttribute( "Allowed", Enum.GetName( typeof( IsolatedStorageContainment ), m_allowed ) ); 254if (m_allowed == IsolatedStorageContainment.UnrestrictedIsolatedStorage)