Exago .NET API Documentation
IncludeAll Property (FolderCollection)
Example 
WebReports.Api.Roles Namespace > FolderCollection Class : IncludeAll Property

If True, any Folder in the system that is not included in the FolderCollection will be available in the interface. If unchecked, only the Folders in the FolderCollection will be available in the interface.

If True and there are no folders in the FolderCollection, then there is no restriction on folders in the user interface. If False with no folders in the FolderCollection, no folders will be available and the Report Tree will be empty.

Storage Management Access Flags may restrict access to folders even when explicitly enabled here.
Syntax
public System.bool IncludeAll {get; set;}

Property Value

True or False, as described above.
Remarks
The same as checking or unchecking the Admin Console > Roles > MainInclude All Data Objects checkbox.
Example
Role myRole = api.Roles.GetRole("ReportUser");
myRole.Security.Folders.IncludeAll = false;
See Also

Reference

FolderCollection Class
FolderCollection Members