コード例 #1
0
        public void SetIdentifyParameters(int identifyThreshold, int identifyRotationTolerance, int context)
        {
            int errorCode = 0;

            try
            {
                errorCode = GrFingerprintProxy.GrSetIdentifyParameters(identifyThreshold, identifyRotationTolerance, context);
            }
            catch (AccessViolationException exception)
            {
                FingerprintException exception2 = new FingerprintException(-113, exception);
                throw exception2;
            }
            FingerprintException.CheckError(errorCode);
        }