Syntax
Protected Sub AddParameter(ByVal ParamDesc As String, ByVal Value As String, Optional HideValue As Boolean = False)
This method is called in your Backoffice class constructor in order to define the needed parameters for your Backoffice as username, password, server IP and port, and any further parameter you may need, to be in the VertexFX Bridge application when creating a new object of your Backoffice.
Parameters
Key | Description |
ParamDesc | Parameter name and description (Key) |
Value | The initial value for the parameter |
HideValue | Boolean if you want to hide the value for this parameter in the bridge for the end user. i.e. passwords |
Sample
' This is your BO class constructorPublic Sub New() MyBase.AddParameter("Username", "") MyBase.AddParameter("Password", "", True) MyBase.AddParameter("Server", "") MyBase.AddParameter("Port", "")End Sub
See Also