public System.bool Propagate {get; set;}
public System.bool Propagate {get; set;}
Consider a directory structure of Sales Reports divided by year and quarters, like the one in this figure that has no Role restrictions on it:
f = r.Security.Folders.NewFolder(); f.Name = "Sales Reports\\2020"; f.ReadOnly = true; f.Propagate = false;
f = r.Security.Folders.NewFolder(); f.Name = "Sales Reports\\2020"; f.ReadOnly = true; f.Propagate = true; f = r.Security.Folders.NewFolder(); f.Name = "Sales Reports\\2020\\Q4"; f.ReadOnly = false; //Propagate defaults to true when creating new folder
f = r.Security.Folders.NewFolder(); f.Name = "Sales Reports\\2020"; f.ReadOnly = true; f.Propagate = false; f = r.Security.Folders.NewFolder(); f.Name = "Sales Reports\\2020\\Q4"; f.ReadOnly = false;