DataServer.UnRegisterClient Method (Typed) |  |
Remove the registration of an object as a client of this data server, so that it no longer receives notification messages from the server about certain actions.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSystemClasses (in XSharp.VOSystemClasses.dll) Version: 2.22 GA
Syntax VIRTUAL METHOD UnRegisterClient(
oClient AS Object,
lAllowClose AS LOGIC
) AS LOGIC
public virtual bool UnRegisterClient(
Object oClient,
[DefaultParameterValueAttribute(true, 0)] bool lAllowClose
)
Request Example
View SourceParameters
- oClient
- Type: Object
The object to unregister (for example, DataWindow or DataBrowser). - lAllowClose
- Type: Logic
TRUE closes the server if this is the last client registered with the server;
FALSE does not close the server. The default is TRUE.
Return Value
Type:
Logic
TRUE if successful; otherwise, FALSE (including if the client was not previously registered).
See Also