Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the CkOtpParam class.
 /// </summary>
 /// <param name='type'>Parameter type</param>
 /// <param name='value'>Value of the parameter</param>
 public CkOtpParam(ulong type, byte[] value)
 {
     if (Platform.UnmanagedLongSize == 4)
     {
         if (Platform.StructPackingSize == 0)
         {
             _params40 = new HighLevelAPI40.MechanismParams.CkOtpParam(Convert.ToUInt32(type), value);
         }
         else
         {
             _params41 = new HighLevelAPI41.MechanismParams.CkOtpParam(Convert.ToUInt32(type), value);
         }
     }
     else
     {
         if (Platform.StructPackingSize == 0)
         {
             _params80 = new HighLevelAPI80.MechanismParams.CkOtpParam(type, value);
         }
         else
         {
             _params81 = new HighLevelAPI81.MechanismParams.CkOtpParam(type, value);
         }
     }
 }
Exemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the CkOtpParam class.
        /// </summary>
        /// <param name='ckOtpParam'>Platform specific CkOtpParam</param>
        internal CkOtpParam(HighLevelAPI81.MechanismParams.CkOtpParam ckOtpParam)
        {
            if (ckOtpParam == null)
            {
                throw new ArgumentNullException("ckOtpParam");
            }

            _params81 = ckOtpParam;
        }
Exemplo n.º 3
0
        /// <summary>
        /// Disposes object
        /// </summary>
        /// <param name="disposing">Flag indicating whether managed resources should be disposed</param>
        protected virtual void Dispose(bool disposing)
        {
            if (!this._disposed)
            {
                if (disposing)
                {
                    // Dispose managed objects
                    if (_params40 != null)
                    {
                        _params40.Dispose();
                        _params40 = null;
                    }

                    if (_params41 != null)
                    {
                        _params41.Dispose();
                        _params41 = null;
                    }

                    if (_params80 != null)
                    {
                        _params80.Dispose();
                        _params80 = null;
                    }

                    if (_params81 != null)
                    {
                        _params81.Dispose();
                        _params81 = null;
                    }
                }

                // Dispose unmanaged objects

                _disposed = true;
            }
        }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the CkOtpParam class.
 /// </summary>
 /// <param name='type'>Parameter type</param>
 /// <param name='value'>Value of the parameter</param>
 public CkOtpParam(ulong type, byte[] value)
 {
     if (Platform.UnmanagedLongSize == 4)
     {
         if (Platform.StructPackingSize == 0)
             _params40 = new HighLevelAPI40.MechanismParams.CkOtpParam(Convert.ToUInt32(type), value);
         else
             _params41 = new HighLevelAPI41.MechanismParams.CkOtpParam(Convert.ToUInt32(type), value);
     }
     else
     {
         if (Platform.StructPackingSize == 0)
             _params80 = new HighLevelAPI80.MechanismParams.CkOtpParam(type, value);
         else
             _params81 = new HighLevelAPI81.MechanismParams.CkOtpParam(type, value);
     }
 }
Exemplo n.º 5
0
        /// <summary>
        /// Disposes object
        /// </summary>
        /// <param name="disposing">Flag indicating whether managed resources should be disposed</param>
        protected virtual void Dispose(bool disposing)
        {
            if (!this._disposed)
            {
                if (disposing)
                {
                    // Dispose managed objects
                    if (_params40 != null)
                    {
                        _params40.Dispose();
                        _params40 = null;
                    }

                    if (_params41 != null)
                    {
                        _params41.Dispose();
                        _params41 = null;
                    }

                    if (_params80 != null)
                    {
                        _params80.Dispose();
                        _params80 = null;
                    }

                    if (_params81 != null)
                    {
                        _params81.Dispose();
                        _params81 = null;
                    }
                }
                
                // Dispose unmanaged objects

                _disposed = true;
            }
        }
Exemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the CkOtpParam class.
 /// </summary>
 /// <param name='ckOtpParam'>Platform specific CkOtpParam</param>
 internal CkOtpParam(HighLevelAPI81.MechanismParams.CkOtpParam ckOtpParam)
 {
     if (ckOtpParam == null)
         throw new ArgumentNullException("ckOtpParam");
     
     _params81 = ckOtpParam;
 }