remote_scorm
The following operations are supported.
Test obtaining a client-side proxy object to the server-side methods:
Developed by Thycotic Software Ltd
Example code to create a Remote Scripting Method:
[RemoteScriptingMethod(Description="Converts a string to all uppercase.")]
public virtual string ToUpperCase(string s)
{
return s.ToUpper();
}