Syntax
Public Sub DisconnectThisSession (ByRef SID As String)
Description
This method is used to disconnect the given session ID from the gateway.
Parameters
Key | Description |
SID | The session ID to be disconnected, value of type is String. |
Sample
Private Sub DisconnectThisSession_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DisconnectThisSession.Click 'CurSer is predefined variable as CVertexCurSvrAPI CurSer.DisconnectThisSession ("SessionID") End Sub
See Also