ApexSQL.Log.Api Send comments on this topic.
CreateServerSideComponentsManager Method
See Also 



db
Connected database object
Creates an object of ServerSideComponentsManager class and returns it to the caller.

Syntax

Visual Basic (Declaration) 
Public Shared Function CreateServerSideComponentsManager( _
   ByVal db As Database _
) As ServerSideComponentsManager
Visual Basic (Usage)Copy Code
Dim db As Database
Dim value As ServerSideComponentsManager
 
value = Engine.CreateServerSideComponentsManager(db)
C# 
public static ServerSideComponentsManager CreateServerSideComponentsManager( 
   Database db
)
C++/CLI 
public:
static ServerSideComponentsManager^ CreateServerSideComponentsManager( 
   Database^ db
) 

Parameters

db
Connected database object

Example

Remarks

A call to this method will automatically initialize ApexSQL Log API engine if it hasn't been initialized before.

See Also