I recently created a secure folder using the DNN File Manager GUI. When investigating the properties of the folder in the code behind I noticed the "IsProtected" property. When I view this property in the debugger, it is set to False. I view the IsStorageSecure property and it is set to True. I altered the permissions on the folder so everyone except Administrators are explicitly denied but this did not alter the IsProtected value. I use the following code to retrieve the IFolderInfo object:
string FileAssetFolderName = "MyFolderName";
IFolderInfo fi = folderManager.GetFolder(PortalId, FileAssetFolderName);
What does the variable IsProtected tell me about the folder and how might I go about altering it if desired?
Thanks