JSObject Class

Represents a custom remotable object.

Class Hierarchy

C#

public class JSObject : VirtualUILibrary, IJSObject, IDisposable;

File

Thinfinity.VirtualUI.cs

Remarks

JSObject allows you to define an object model that is mirrored on the client side, and allows for an easy, powerful and straight-forward way to connect the web browser client application and the remoted Windows application.

JSObject can contain properties (IJSProperties), methods (IJSMethods), events (IJSEvents) and children objects. Changes to properties values are propagated in from server to client and viceversa, keeping the data synchronized.

JSObject is defined as a model seen from the client perspective. A method (IJSMethod) is called on the client side and executed on the server side. An event (IJSEvent) is called on the server side and raised on the client side.

Namespace

Cybele.Thinfinity Namespace