12 references to s_accessControlSections
SDDLTests (12)
Program.cs (12)
156DirectorySecurity ds = new(s_userTestDirectory, s_accessControlSections); 157FileSecurity fs = new(testAssetPath, s_accessControlSections); 159Console.WriteLine($"Directory descriptor: {ds.GetSecurityDescriptorSddlForm(s_accessControlSections)}"); 160Console.WriteLine($" File descriptor: {fs.GetSecurityDescriptorSddlForm(s_accessControlSections)}"); 210DirectorySecurity ds = new(path, s_accessControlSections); 211string descriptor = ds.GetSecurityDescriptorSddlForm(s_accessControlSections); 227FileSecurity ds = new(path, s_accessControlSections); 228string descriptor = ds.GetSecurityDescriptorSddlForm(s_accessControlSections); 238DirectorySecurity ds = new(s_programData, s_accessControlSections); 239string descriptor = ds.GetSecurityDescriptorSddlForm(s_accessControlSections); 259DirectorySecurity ds = new DirectorySecurity(s_programData, s_accessControlSections); 260string descriptor = ds.GetSecurityDescriptorSddlForm(s_accessControlSections);