NET API
HSM Dinamo
Loading...
Looking for...
No entries found
get_date.cs

Example of using the HSM date search operation.

See Note on examples.
using Dinamo.Hsm;
using System;
namespace TesteData
{
class Program
{
private static string HSM_HOST = "200.201.208.61";
private static string HSM_USER = "master";
private static string HSM_PASS = "xxxx";
static void Main(string[] args)
{
DinamoClient client = new DinamoClient();
client.Connect(HSM_HOST, HSM_USER, HSM_PASS);
Console.Out.WriteLine(client.GetHSMDate());
client.Disconnect();
}
}
}
API class for accessing HSM functionalities Dinamo. In this class you can program using...
Definition DinamoClient.cs:93
DateTime GetHSMDate()
Returns the date/time of the HSM.
Definition DinamoClient.cs:898
void Connect(string User, string Password)
Establishes an encrypted connection to the HSM using the load balance settings.
Definition DinamoClient.cs:562
void Disconnect(bool flagClose)
Terminates the connection to the HSM.
Definition DinamoClient.cs:814
Namespace denoting a set of functions for accessing the HSM Dinamo and their respective exceptions.
Definition DinamoClient.cs:12