Start Method

Summary
Starts the ContextManagementRegistryService.
Syntax
C#
VB
C++
public virtual void Start() 
Public Overridable Sub Start()  
public: 
virtual void Start();  
Example
C#
VB
using Leadtools.Ccow; 
using Leadtools.Ccow.Services; 
 
 
private ContextManagementRegistryService service; 
 
public void StartService() 
{ 
   // Create ContextManagementRegistryService 
   if (service == null) 
      service = new ContextManagementRegistryService(); 
 
   if (!service.IsStarted) 
   { 
      // Start the service to listen for Locate CCOW components requests 
      service.Start(); 
   } 
} 
 
public void StopService() 
{ 
   if (service != null && service.IsStarted) 
      service.Stop(); 
} 
Imports Leadtools.Ccow 
Imports Leadtools.Ccow.Services 
 
Private service As ContextManagementRegistryService 
 
Public Sub StartService() 
   ' Create ContextManagementRegistryService 
   If service Is Nothing Then 
      service = New ContextManagementRegistryService() 
   End If 
 
   If Not service.IsStarted Then 
      ' Start the service to listen for Locate CCOW components requests 
      service.Start() 
   End If 
End Sub 
 
Public Sub StopService() 
   If service IsNot Nothing AndAlso service.IsStarted Then 
      service.Stop() 
   End If 
End Sub 
Requirements

Target Platforms

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

Leadtools.Ccow.Services Assembly

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