示例#1
0
        public override void Close()
        {
            VerifyResult(_cco.Close());

            _cco.DataEvent           -= (_IOPOSSmartCardRWEvents_DataEventEventHandler)_cco_DataEvent;
            _cco.DirectIOEvent       -= (_IOPOSSmartCardRWEvents_DirectIOEventEventHandler)_cco_DirectIOEvent;
            _cco.ErrorEvent          -= (_IOPOSSmartCardRWEvents_ErrorEventEventHandler)_cco_ErrorEvent;
            _cco.OutputCompleteEvent -= (_IOPOSSmartCardRWEvents_OutputCompleteEventEventHandler)_cco_OutputCompleteEvent;
            _cco.StatusUpdateEvent   -= (_IOPOSSmartCardRWEvents_StatusUpdateEventEventHandler)_cco_StatusUpdateEvent;
            _cco = null;
        }
示例#2
0
        public override void Open()
        {
            if (string.IsNullOrWhiteSpace(_oposDeviceName))
            {
                try
                {
                    _oposDeviceName = GetConfigurationProperty("OposDeviceName");
                    _oposDeviceName.Trim();
                }
                catch
                {
                    _oposDeviceName = "";
                }
            }

            if (string.IsNullOrWhiteSpace(_oposDeviceName))
            {
                string strMessage = "OposDeviceName is not configured on " + DevicePath + ".";
                throw new Microsoft.PointOfService.PosControlException(strMessage, ErrorCode.NoExist);
            }

            if (_cco == null)
            {
                try
                {
                    // CCO object CreateInstance
                    _cco = new OpenPOS.Devices.OPOSSmartCardRW();

                    // Register event handler
                    _cco.DataEvent           += new _IOPOSSmartCardRWEvents_DataEventEventHandler(_cco_DataEvent);
                    _cco.DirectIOEvent       += new _IOPOSSmartCardRWEvents_DirectIOEventEventHandler(_cco_DirectIOEvent);
                    _cco.ErrorEvent          += new _IOPOSSmartCardRWEvents_ErrorEventEventHandler(_cco_ErrorEvent);
                    _cco.OutputCompleteEvent += new _IOPOSSmartCardRWEvents_OutputCompleteEventEventHandler(_cco_OutputCompleteEvent);
                    _cco.StatusUpdateEvent   += new _IOPOSSmartCardRWEvents_StatusUpdateEventEventHandler(_cco_StatusUpdateEvent);
                }
                catch
                {
                    string strMessage = "Can not create Common ControlObject on " + DevicePath + ".";
                    throw new Microsoft.PointOfService.PosControlException(strMessage, ErrorCode.Failure);
                }
            }

            VerifyResult(_cco.Open(_oposDeviceName));
        }
示例#3
0
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposedValue)
            {
                if (disposing)
                {
                    // TODO: Discard the managed state (managed object).
                }

                if (_cco != null)
                {
                    _cco.DataEvent           -= (_IOPOSSmartCardRWEvents_DataEventEventHandler)_cco_DataEvent;
                    _cco.DirectIOEvent       -= (_IOPOSSmartCardRWEvents_DirectIOEventEventHandler)_cco_DirectIOEvent;
                    _cco.ErrorEvent          -= (_IOPOSSmartCardRWEvents_ErrorEventEventHandler)_cco_ErrorEvent;
                    _cco.OutputCompleteEvent -= (_IOPOSSmartCardRWEvents_OutputCompleteEventEventHandler)_cco_OutputCompleteEvent;
                    _cco.StatusUpdateEvent   -= (_IOPOSSmartCardRWEvents_StatusUpdateEventEventHandler)_cco_StatusUpdateEvent;
                    _cco = null;
                }

                _disposedValue = true;
            }
        }
示例#4
0
 public OpenPOSSmartCardRW()
 {
     _cco              = null;
     _oposDeviceName   = "";
     _binaryConversion = 0;
 }