| CredentialsOptions Constructor (String, String, Int16, String, String, String, String, String) |
Namespace:
LinkarCommon
Assemblies:
LinkarClientCore (in LinkarClientCore.dll) Version: 2.1.0.0
LinkarClientMono (in LinkarClientMono.dll) Version: 2.1.0.0 (2.1.0.0)
LinkarClient (in LinkarClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public CredentialsOptions(
string host,
string entrypoint,
short port,
string username,
string password,
string language = "",
string freetext = "",
string pluginId = ""
)
Public Sub New (
host As String,
entrypoint As String,
port As Short,
username As String,
password As String,
Optional language As String = "",
Optional freetext As String = "",
Optional pluginId As String = ""
)
public:
CredentialsOptions(
String^ host,
String^ entrypoint,
short port,
String^ username,
String^ password,
String^ language = L"",
String^ freetext = L"",
String^ pluginId = L""
)
new :
host : string *
entrypoint : string *
port : int16 *
username : string *
password : string *
?language : string *
?freetext : string *
?pluginId : string
(* Defaults:
let _language = defaultArg language ""
let _freetext = defaultArg freetext ""
let _pluginId = defaultArg pluginId ""
*)
-> CredentialsOptions
Parameters
- host
- Type: SystemString
address or hostname where Linkar Server is listening. - entrypoint
- Type: SystemString
The EntryPoint Name defined in Linkar Server. - port
- Type: SystemInt16
Port number where the EntryPoint keeps listening. - username
- Type: SystemString
Linkar Server username. - password
- Type: SystemString
Password of the user Linkear Server. - language (Optional)
- Type: SystemString
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 them.
- freetext (Optional)
- Type: SystemString
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 (Optional)
- Type: SystemString
Internal code to enable its use in Linkar Server. Used by Plugin developers.
See Also