Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » QAnywhere » QAnywhere Reference » QAnywhere .NET API reference » QAnywhere .NET API for clients (.NET 2.0) » QAManagerFactory class

 

CreateQAManager method

Create a QAManager instance with the specified properties.

Syntax
Visual Basic
Public Function CreateQAManager( _
   ByVal iniFile As String _
) As QAManager
C#
public QAManager CreateQAManager(
   string  iniFile
);
Parameters
  • iniFile   Specifies the properties file to use for configuring the QAManager instance.

Return value

A new QAManager instance.

Remarks

If iniFile is null, the QAManager is created using default properties. You can use the QAManagerBase.SetProperty to set QAnywhere manager configuration properties programmatically after you create the instance. See SetProperty method.

For a list of QAnywhere manager configuration properties, see QAnywhere manager configuration properties.

Exceptions
See also