Пример #1
0
        // Constructor ( from reference held only ! )

        public Source_SingulationParametersDynamicQ
        (
            rfid.Structures.DynamicQParms from
        )
            :
            base( )
        {
            this.nativeSingulationParms = from;
        }
Пример #2
0
        public bool Equals(rfid.Structures.DynamicQParms rhs)
        {
            if (null == (System.Object)rhs)
            {
                return(false);
            }

            return
                (this.StartQValue == rhs.startQValue &&
                 this.MinQValue == rhs.minQValue &&
                 this.MaxQValue == rhs.maxQValue &&
                 this.RetryCount == rhs.retryCount &&
                 this.ToggleTarget == rhs.toggleTarget &&
                 this.ThresholdMultiplier == rhs.thresholdMultiplier);
        }