|  | LinkarClientGetVersionAsync Method | 
Linkar Framework for .NET and Core
            Allows getting the server version, in a asynchronous way with MV output format.
            
Namespace: Linkar.Functions.Persistent.MVAssembly: Linkar.Functions.Persistent.MV (in Linkar.Functions.Persistent.MV.dll) Version: 2.3.1
 Syntax
Syntaxpublic Task<string> GetVersionAsync(
	int receiveTimeout = 0
)
Public Function GetVersionAsync ( 
	Optional receiveTimeout As Integer = 0
) As Task(Of String)
public:
Task<String^>^ GetVersionAsync(
	int receiveTimeout = 0
)
member GetVersionAsync : 
        ?receiveTimeout : int 
(* Defaults:
        let _receiveTimeout = defaultArg receiveTimeout 0
*)
-> Task<string> Parameters
- receiveTimeout  Int32  (Optional)
- Maximum time in seconds that the client will wait for a response from the server. Default = 0 to wait indefinitely.
Return Value
TaskStringThe results of the operation.
 Remarks
Remarks
            This function returns the following information
            
- LKMVCOMPONENTSVERSION
- MV Components version.
- LKSERVERVERSION
- Linkar SERVER version.
- LKCLIENTVERSION
- Used client library version.
- DATABASE
- Database.
- OS
- Operating system.
- DATEZERO
- Date zero base in YYYYMMDD format.
- DATEOUTPUTCONVERSION
- Output conversion for date used by Linkar Schemas.
- TIMEOUTPUTCONVERSION
- Output conversion for time used by Linkar Schemas.
- MVDATETIMESEPARATOR
- DateTime used separator used by Linkar Schemas, for instance 18325,23000.
- MVBOOLTRUE
- Database used char for the Boolean true value used by Linkar Schemas.
- MVBOOLFALSE
- Database used char for the Boolean false value used by Linkar Schemas.
- OUTPUTBOOLTRUE
- Used char for the Boolean true value out of the database used by Linkar Schemas.
- OUTPUTBOOLFALSE
- Used char for the Boolean false value out of the database used by Linkar Schemas.
- MVDECIMALSEPARATOR
- Decimal separator in the database. May be point, comma or none when the database does not store decimal numbers. Used by Linkar Schemas.
- OTHERLANGUAGES
- Languages list separated by commas.
- TABLEROWSEPARATOR
- It is the decimal char that you use to separate the rows in the output table format. By default 11.
- TABLECOLSEPARATOR
- It is the decimal char that you use to separate the columns in the output table format. By default 9.
- CONVERTNUMBOOLJSON
- Switch to create numeric and boolean data in JSON strings. Default is false.
 Example
Exampleusing Linkar;
using Linkar.Functions.Persistent.MV;
class Test
    {
        public string MyGetVersion()
        {
            string result = "";
            try
            {
                CredentialOptions credentials = new CredentialOptions("127.0.0.1", "EPNAME", 11300, "admin", "admin");
                LinkarClient client = new LinkarClient();
                client.Login(credentials);
                result = client.GetVersionAsync().Result;
                client.Logout();
            }
            catch (Exception ex)
            {
                string error = ex.Message;
                
            }
            return result;
        }
    }Imports Linkar
Imports Linkar.Functions.Persistent.MV
Class Test
    Public Function MyGetVersion() As String
        Dim result As String = ""
        Try
            Dim credentials As CredentialOptions = New CredentialOptions("127.0.0.1", "EPNAME", 11300, "admin", "admin")
            Dim client As LinkarClient = New LinkarClient()
            client.Login(credentials)
            result = client.GetVersionAsync().Result
            client.Logout()
        Catch ex As Exception
            Dim[error] As String = ex.Message
            
        End Try
        Return result
  End Function
End ClassNo code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
 See Also
See Also