17 references to ConfigId
mscorlib (17)
system\security\policy\policylevel.cs (7)
56private ConfigId m_configId; 142internal PolicyLevel (PolicyLevelType type, string path) : this (type, path, ConfigId.None) {} 144internal PolicyLevel (PolicyLevelType type, string path, ConfigId configId) { 197internal ConfigId ConfigId { 483if (m_configId == ConfigId.None) 916if (m_configId == ConfigId.None) 927if (m_configId == ConfigId.None)
system\security\policymanager.cs (3)
41policyLevels.Add(new PolicyLevel(System.Security.PolicyLevelType.Enterprise, enterpriseConfig, ConfigId.EnterprisePolicyLevel)); 44policyLevels.Add(new PolicyLevel(System.Security.PolicyLevelType.Machine, machineConfig, ConfigId.MachinePolicyLevel)); 49policyLevels.Add(new PolicyLevel(System.Security.PolicyLevelType.User, userConfig, ConfigId.UserPolicyLevel));
system\security\util\config.cs (7)
98internal static extern bool RecoverData(ConfigId id); 103internal static extern void SetQuickCache(ConfigId id, QuickCacheEntryType quickCacheFlags); 108private static extern bool GetCacheEntry(ConfigId id, int numKey, [In] byte[] key, int keyLength, ObjectHandleOnStack retData); 111internal static bool GetCacheEntry(ConfigId id, int numKey, byte[] key, out byte[] data) 123private static extern void AddCacheEntry(ConfigId id, int numKey, [In] byte[] key, int keyLength, byte[] data, int dataLength); 126internal static void AddCacheEntry(ConfigId id, int numKey, byte[] key, byte[] data) 134internal static extern void ResetCacheData(ConfigId id);