Skip to content

Charts.BindService method (1 of 2)

Creates service definition that can be registered with a server

public static ServerServiceDefinition BindService(ChartsBase serviceImpl)
parameter description
serviceImpl An object implementing the server-side handling logic.

See Also


Charts.BindService method (2 of 2)

Register service method with a service binder with or without implementation. Useful when customizing the service binding logic. Note: this method is part of an experimental API that can change or be removed without any prior notice.

public static void BindService(ServiceBinderBase serviceBinder, ChartsBase serviceImpl)
parameter description
serviceBinder Service methods will be bound by calling AddMethod on this object.
serviceImpl An object implementing the server-side handling logic.

See Also