Constructor.cs
The constructor for the NiP.Client class
// ------------------------------------------------------------------------------------------
// <copyright file="Constructor.cs" company="Pointsharp AB">
// Pointsharp AB
// </copyright>
// <summary>
// Defines the Client partial class.
// </summary>
// ------------------------------------------------------------------------------------------
namespace SecMaker.NiP.Client
{
public partial class Client
{
public Client(string certHash, string url, bool encryptionDisabled)
{
_sCertHash = certHash;
_sUrl = url;
_encryptionDisabled = encryptionDisabled;
}
}
}