SessionManager Constructor
- Last UpdatedMar 17, 2026
- 1 minute read
The SessionManager() method is the constructor for the Session Manager class.
This overload of the method is the default constructor. The fields of objects created with this constructor must be populated by the client by manually setting the properties or by calling a method that populates the object.
'Declaration
Public Function New( _
ByVal clientType As ClientTypes _
)
'Usage
Dim clientType As ClientTypes
Dim instance As New SessionManager(clientType)
public SessionManager(
ClientTypes clientType
)
Parameters
- clientType
- Required. Holds the type of the module (e.g., Configurator, Supervisor, DataEditor, etc.) that is creating the SessionManager object.