Reflection
KermitStopServer Method


Specifies whether this method logs off from the remote computer, in addition to shutting down the server Kermit program. The values are: KermitStopServerOption.NoLogoff KermitStopServer does not log off the remote server when shutting down the server Kermit program. This is the default action if no Logoff argument is included. KermitStopServerOption.Logoff KermitStopServer does log off the remote server when shutting down the server Kermit program.
Instructs a remote Kermit program running in server mode to shut down.
Syntax
'Declaration
 
Function KermitStopServer( _
   ByVal option As KermitStopServerOption _
) As ReturnCode
'Usage
 
Dim instance As IFileTransfer
Dim option As KermitStopServerOption
Dim value As ReturnCode
 
value = instance.KermitStopServer(option)

Parameters

option
Specifies whether this method logs off from the remote computer, in addition to shutting down the server Kermit program. The values are: KermitStopServerOption.NoLogoff KermitStopServer does not log off the remote server when shutting down the server Kermit program. This is the default action if no Logoff argument is included. KermitStopServerOption.Logoff KermitStopServer does log off the remote server when shutting down the server Kermit program.
See Also