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

Show in webframe

Name Property (CCOWApplication)






Gets or sets the application's name.
Syntax
[ColumnAttribute(DbType="NVarChar(256)", Storage="_Name")]
public string Name {get; set;}
'Declaration
 
<ColumnAttribute(DbType="NVarChar(256)", Storage="_Name")>
Public Property Name As String
'Usage
 
Dim instance As CCOWApplication
Dim value As String
 
instance.Name = value
 
value = instance.Name
[ColumnAttribute(DbType="NVarChar(256)", Storage="_Name")]
public:
property String^ Name {
   String^ get();
   void set (    String^ value);
}

Property Value

The application name.
Example
Copy Code  
Imports Leadtools.Ccow.Server
Imports Leadtools.Ccow.Server.Data

<TestMethod()> _
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
using Leadtools.Ccow.Server;
using Leadtools.Ccow.Server.Data;

[TestMethod]
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;
}
Requirements

Target Platforms

See Also

Reference

CCOWApplication Class
CCOWApplication Members

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