Sample
Protected Sub AddParameter(ByVal ParamDesc As String, ByVal Value As String, Optional HideValue As Boolean = False)
Description
This method should be called in your LP class constructor in order to define the needed parameters for your LP like username, password, server IP and port, and any further parameter you may need. To be in the VertexFX Bridge application when creating new object of you LP.
Parameter
Part | 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 LP class constructor Public Sub New() .. MyBase.AddParameter("Username", "") MyBase.AddParameter("Password", "", True) MyBase.AddParameter("Server", "") MyBase.AddParameter("Port", "").. End Sub
See Also