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