8 writes to m_flags
System (8)
security\system\security\permissions\storepermissionattribute.cs (8)
23
m_flags
= value;
29
set {
m_flags
= value ? m_flags | StorePermissionFlags.CreateStore : m_flags & ~StorePermissionFlags.CreateStore; }
34
set {
m_flags
= value ? m_flags | StorePermissionFlags.DeleteStore : m_flags & ~StorePermissionFlags.DeleteStore; }
39
set {
m_flags
= value ? m_flags | StorePermissionFlags.EnumerateStores : m_flags & ~StorePermissionFlags.EnumerateStores; }
44
set {
m_flags
= value ? m_flags | StorePermissionFlags.OpenStore : m_flags & ~StorePermissionFlags.OpenStore; }
49
set {
m_flags
= value ? m_flags | StorePermissionFlags.AddToStore : m_flags & ~StorePermissionFlags.AddToStore; }
54
set {
m_flags
= value ? m_flags | StorePermissionFlags.RemoveFromStore : m_flags & ~StorePermissionFlags.RemoveFromStore; }
59
set {
m_flags
= value ? m_flags | StorePermissionFlags.EnumerateCertificates : m_flags & ~StorePermissionFlags.EnumerateCertificates; }
23 references to m_flags
System (23)
security\system\security\permissions\storepermissionattribute.cs (23)
20
get { return
m_flags
; }
28
get { return (
m_flags
& StorePermissionFlags.CreateStore) != 0; }
29
set { m_flags = value ?
m_flags
| StorePermissionFlags.CreateStore :
m_flags
& ~StorePermissionFlags.CreateStore; }
33
get { return (
m_flags
& StorePermissionFlags.DeleteStore) != 0; }
34
set { m_flags = value ?
m_flags
| StorePermissionFlags.DeleteStore :
m_flags
& ~StorePermissionFlags.DeleteStore; }
38
get { return (
m_flags
& StorePermissionFlags.EnumerateStores) != 0; }
39
set { m_flags = value ?
m_flags
| StorePermissionFlags.EnumerateStores :
m_flags
& ~StorePermissionFlags.EnumerateStores; }
43
get { return (
m_flags
& StorePermissionFlags.OpenStore) != 0; }
44
set { m_flags = value ?
m_flags
| StorePermissionFlags.OpenStore :
m_flags
& ~StorePermissionFlags.OpenStore; }
48
get { return (
m_flags
& StorePermissionFlags.AddToStore) != 0; }
49
set { m_flags = value ?
m_flags
| StorePermissionFlags.AddToStore :
m_flags
& ~StorePermissionFlags.AddToStore; }
53
get { return (
m_flags
& StorePermissionFlags.RemoveFromStore) != 0; }
54
set { m_flags = value ?
m_flags
| StorePermissionFlags.RemoveFromStore :
m_flags
& ~StorePermissionFlags.RemoveFromStore; }
58
get { return (
m_flags
& StorePermissionFlags.EnumerateCertificates) != 0; }
59
set { m_flags = value ?
m_flags
| StorePermissionFlags.EnumerateCertificates :
m_flags
& ~StorePermissionFlags.EnumerateCertificates; }
66
return new StorePermission(
m_flags
);