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