Start() Method

Summary
Starts the CCOW server.
Syntax
C#
VB
C++
public static void Start() 
Public Shared Function Start() As System.Void 
public: static System.Void^  Start() 
Example
C#
VB
using Leadtools.Ccow.Server; 
 
 
public void StartServer() 
{ 
   // Check if the ccow server is registered 
   if (!CcowServer.IsRegistered()) 
      CcowServer.Register(); 
 
   // Start the CCOW server 
   CcowServer.Start(); 
} 
 
public void StopServer() 
{ 
   // Stop the CCOW server 
   CcowServer.Stop(); 
} 
Imports Leadtools.Ccow.Server 
 
Public Sub StartServer() 
   ' Check if the ccow server is registered 
   If Not CcowServer.IsRegistered() Then 
      CcowServer.Register() 
   End If 
 
   ' Start the CCOW server 
   CcowServer.Start() 
End Sub 
 
Public Sub StopServer() 
   ' Stop the CCOW server 
   CcowServer.[Stop]() 
End Sub 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Ccow.Server Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.