Syntax
Public Function PauseServer() As String
Description
This Function turns the Sever to Pause mode. Connected clients will remain connectedto the server but the process of sending news will be stopped and there will be no new clients to connect as long as the Server is paused. After PauseServer method executes,ServerStatusevent is fired.
Parameters
No parameters.
Sample
Public WithEvents server As new CVertexFXNewsSvr Private Sub Pause_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pause.Click server.PauseServer () End Sub
See Also