public virtual void Start()
Public Overridable Sub Start()
public:
virtual void Start();
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
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document