|
|
|
|
|
NetCloseRemoteAccess (Function) In french: NetFermeAccèsDistant
Warning
From version 2024, this feature is no longer available.
AccessReport is int = NetOpenRemoteAccess("My connection") IF AccessReport = 0 THEN // Process ... NetCloseRemoteAccess() ELSE Error("Error during the connection", NetMsgError(AccessReport)) END
Syntax
<Result> = NetCloseRemoteAccess([<Access name>])
<Result>: Integer - 0 if the closing was performed,
- an error code otherwise. This error code can be used with NetMsgError to get the error details and the corresponding message.
<Access name>: Optional character string Name of the "Remote network access" connection defined in Windows. The list of remote accesses installed on a computer is returned by NetListRemoteAccess.If this parameter is specified, the remote access is closed, regardless of its opening mode (by NetOpenRemoteAccess or not). If this parameter is not specified, the last connection opened by NetOpenRemoteAccess with <Automatic closing> set to True is closed. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|