5 writes to m_type
mscorlib (5)
system\security\policy\policylevel.cs (5)
102
m_type
= System.Security.PolicyLevelType.User;
104
m_type
= System.Security.PolicyLevelType.Machine;
106
m_type
= System.Security.PolicyLevelType.Enterprise;
108
m_type
= System.Security.PolicyLevelType.AppDomain;
145
m_type
= type;
10 references to m_type
mscorlib (10)
system\security\policy\policylevel.cs (10)
114
switch(
m_type
) {
124
throw new ArgumentException(Environment.GetResourceString("Arg_EnumIllegalVal", (int)
m_type
));
193
return
m_type
;
216
return GetLocationFromType(
m_type
);
903
if (
m_type
!= PolicyLevelType.User &&
904
m_type
!= PolicyLevelType.Machine &&
905
m_type
!= PolicyLevelType.Enterprise) {
1126
string path = GetLocationFromType(
m_type
) + ".default";
1128
PolicyLevel level = new PolicyLevel(
m_type
, path);
1140
m_rootCodeGroup = (
m_type
== PolicyLevelType.Machine ? CreateDefaultMachinePolicy() : CreateDefaultAllGroup());