From 529633d9707ee0df6b32e8dc692ab615e3563b63 Mon Sep 17 00:00:00 2001 From: dahlia Date: Thu, 27 Jun 2013 18:44:27 -0700 Subject: add method docs for DAMap.GetStore() and DAMap.SetStore() --- OpenSim/Framework/DAMap.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/OpenSim/Framework/DAMap.cs b/OpenSim/Framework/DAMap.cs index a57393b..fd45a11 100644 --- a/OpenSim/Framework/DAMap.cs +++ b/OpenSim/Framework/DAMap.cs @@ -216,6 +216,12 @@ namespace OpenSim.Framework } } + /// + /// Retrieve a Dynamic Attribute store + /// + /// namespace for the store - use "OpenSim" for in-core modules + /// name of the store within the namespace + /// an OSDMap representing the stored data, or null if not found public OSDMap GetStore(string ns, string storeName) { OSD namespaceOsd; @@ -234,6 +240,12 @@ namespace OpenSim.Framework return null; } + /// + /// Saves a Dynamic attribute store + /// + /// namespace for the store - use "OpenSim" for in-core modules + /// name of the store within the namespace + /// an OSDMap representing the data to store public void SetStore(string ns, string storeName, OSDMap store) { ValidateNamespace(ns); -- cgit v1.1