From 973f2e8be540163e12dd8d85fffad3acd96fe212 Mon Sep 17 00:00:00 2001
From: SignpostMarv
Date: Fri, 31 Aug 2012 12:50:32 +0100
Subject: adding documentation to script invokation methods
---
.../Framework/Interfaces/IScriptModuleComms.cs | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
index ed71a95..ff8213c 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
@@ -46,9 +46,31 @@ namespace OpenSim.Region.Framework.Interfaces
///
event ScriptCommand OnScriptCommand;
+ ///
+ /// Register an instance method as a script call by method name
+ ///
+ ///
+ ///
void RegisterScriptInvocation(object target, string method);
+
+ ///
+ /// Register an instance method as a script call by method info
+ ///
+ ///
+ ///
void RegisterScriptInvocation(object target, MethodInfo method);
+
+ ///
+ /// Register one or more instance methods as script calls by method name
+ ///
+ ///
+ ///
void RegisterScriptInvocation(object target, string[] methods);
+
+ ///
+ /// Returns an array of all registered script calls
+ ///
+ ///
Delegate[] GetScriptInvocationList();
Delegate LookupScriptInvocation(string fname);
--
cgit v1.1