DataServer.UnRegisterClient Method |  |
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:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.17
Syntax VIRTUAL METHOD UnRegisterClient(
oClient,
lAllowClose
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual UnRegisterClient(
Usual oClient = default,
Usual lAllowClose = default
)
Request Example
View SourceParameters
- oClient (Optional)
- Type: Usual
The object to unregister (for example, DataWindow or DataBrowser). - lAllowClose (Optional)
- Type: Usual
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:
Usual
TRUE if successful; otherwise, FALSE (including if the client was not previously registered).
See Also