diff options
author | Sean Dague | 2009-05-08 18:09:41 +0000 |
---|---|---|
committer | Sean Dague | 2009-05-08 18:09:41 +0000 |
commit | b333690969a600bd2d3e298bee98ea38c5dd66e9 (patch) | |
tree | 52b722e0160ce6308d71e168d82382a4200e3d73 /OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs | |
parent | * refactor: break out sog original xml serialization to a separate class (diff) | |
download | opensim-SC-b333690969a600bd2d3e298bee98ea38c5dd66e9.zip opensim-SC-b333690969a600bd2d3e298bee98ea38c5dd66e9.tar.gz opensim-SC-b333690969a600bd2d3e298bee98ea38c5dd66e9.tar.bz2 opensim-SC-b333690969a600bd2d3e298bee98ea38c5dd66e9.tar.xz |
added WebFetchInventoryDescendents CAP
From: Robert Smart <smartrob@uk.ibm.com>
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs b/OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs index 3651513..7cc1e38 100644 --- a/OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs +++ b/OpenSim/Framework/Communications/Capabilities/LLSDInventoryItem.cs | |||
@@ -87,11 +87,11 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
87 | [OSDMap] | 87 | [OSDMap] |
88 | public class LLSDInventoryFolderContents | 88 | public class LLSDInventoryFolderContents |
89 | { | 89 | { |
90 | public UUID agent___id; // the (three "_") "___" so the serialising knows to change this to a "-" | 90 | public UUID agent_id; |
91 | public int descendents; | 91 | public int descendents; |
92 | public UUID folder___id; //as LL can't decide if they are going to use "_" or "-" to separate words in the field names | 92 | public UUID folder_id; |
93 | public OSDArray items = new OSDArray(); | 93 | public OSDArray items = new OSDArray(); |
94 | public UUID owner___id; // and of course we can't have field names with "-" in | 94 | public UUID owner_id; |
95 | public int version; | 95 | public int version; |
96 | } | 96 | } |
97 | } | 97 | } |