Gets the applications table.
public Table<CCOWApplication> CCOWApplication { get; }
Public Overridable ReadOnly Property CCOWApplication() As System.Data.Linq.Table(Of CCOWApplication)
Get
public: virtual property System.Data.Linq.Table<CCOWApplication^ >^ CCOWApplication
{
System.Data.Linq.Table<CCOWApplication^ >^ get()
}
The CCOW applications table.
using Leadtools.Ccow.Server;
using Leadtools.Ccow.Server.Data;
public List<string> GetCcowApplicationsNames()
{
List<string> applicationsNames = new List<string>();
// Get the CCOW server database
using (Database db = Utils.GetDatabase())
{
// Add the applications names
foreach (CCOWApplication app in db.CCOWApplication)
{
applicationsNames.Add(app.Name);
}
}
return applicationsNames;
}
Imports Leadtools.Ccow.Server
Imports Leadtools.Ccow.Server.Data
Public Function GetCcowApplicationsNames() As List(Of String)
Dim applicationsNames As New List(Of String)()
' Get the CCOW server database
Using db As Database = Utils.GetDatabase()
' Add the applications names
For Each app As CCOWApplication In db.CCOWApplication
applicationsNames.Add(app.Name)
Next
End Using
Return applicationsNames
End Function
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