* This is an initial basic experimental code for inventory import and export from the region server
* Probably not yet ready for general use
* Thanks Kayne!
This commit is contained in:
Justin Clarke Casey
2008-09-29 14:41:16 +00:00
parent e0795e44ac
commit 7ec065198a
3 changed files with 33 additions and 75 deletions

View File

@@ -316,6 +316,21 @@ namespace OpenSim.Framework.Communications.Cache
return folderList;
}
public List<InventoryFolderImpl> RequestListOfFolderImpls()
{
List<InventoryFolderImpl> folderList = new List<InventoryFolderImpl>();
lock (SubFolders)
{
foreach (InventoryFolderImpl folder in SubFolders.Values)
{
folderList.Add(folder);
}
}
return folderList;
}
public int TotalCount
{
get