Skip to content

SubscriptionService.BindService method (1 of 2)

Creates service definition that can be registered with a server

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

See Also


SubscriptionService.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, SubscriptionServiceBase 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