| CredentialOptions(String, String, Int32, String, String, String, String, String) Constructor |
Linkar Framework .NET (Core and Framework)
Initializes a new instance of the CredentialsOptions class
Namespace: LinkarAssembly: Linkar (in Linkar.dll) Version: 2.3.1
Syntax public CredentialOptions(
string host,
string entrypoint,
int port,
string username,
string password,
string language = "",
string freeText = "",
string pluginId = ""
)
Public Sub New (
host As String,
entrypoint As String,
port As Integer,
username As String,
password As String,
Optional language As String = "",
Optional freeText As String = "",
Optional pluginId As String = ""
)
public:
CredentialOptions(
String^ host,
String^ entrypoint,
int port,
String^ username,
String^ password,
String^ language = L"",
String^ freeText = L"",
String^ pluginId = L""
)
new :
host : string *
entrypoint : string *
port : int *
username : string *
password : string *
?language : string *
?freeText : string *
?pluginId : string
(* Defaults:
let _language = defaultArg language ""
let _freeText = defaultArg freeText ""
let _pluginId = defaultArg pluginId ""
*)
-> CredentialOptions
Parameters
- host String
- Address or hostname where Linkar Server is listening.
- entrypoint String
- The EntryPoint Name defined in Linkar Server.
- port Int32
- Port number where the EntryPoint keeps listening.
- username String
- Linkar Server username.
- password String
- Password of the Linkar Server user.
- language String (Optional)
- Used to make the database routines know in which language they must answer. The Error messages coming from the Database are in English by default, but you can customize
- freeText String (Optional)
- Free text that will appear in the Linkar MANAGER to identify in an easy way who is making the petition. For example if the call is made from a ERP, here we can write "MyERP".
- pluginId String (Optional)
- Internal ID for plugin to enable its use in Linkar Server. Used by Plugin developers.
See Also