Error processing SSI file
LEADTOOLS Leadtools.Ccow.Services (Leadtools.Ccow.Services assembly)

Show in webframe

Start Method






Starts the ContextManagementRegistryService.
Syntax
public virtual void Start()
'Declaration
 
Public Overridable Sub Start() 
'Usage
 
Dim instance As ContextManagementRegistryService
 
instance.Start()
public:
virtual void Start(); 
Example
Copy Code  
Imports Leadtools.Ccow
Imports Leadtools.Ccow.Services

Private service As ContextManagementRegistryService
<TestMethod()> _
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
using Leadtools.Ccow;
using Leadtools.Ccow.Services;

private ContextManagementRegistryService service;
[TestMethod]
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();
}
Requirements

Target Platforms

See Also

Reference

ContextManagementRegistryService Class
ContextManagementRegistryService Members

Error processing SSI file
Leadtools.Ccow.Services requires a Medical toolkit server license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features