Example #1
0
        public static string GetAttributeUnits(ImaqdxSessionHandle session, string name)
        {
            Debug.Assert(session != null, "The session parameter cannot be null.");
            Debug.Assert(!session.IsInvalid, "The session parameter must be a valid handle.");
            Debug.Assert(name != null, "The name parameter cannot be null.");

            string units;
            int    status = NiImaqdxDll.IMAQdxGetAttributeUnitsCW(session, name, out units);

            ExceptionBuilder.CheckErrorAndThrow(status);
            return(units == null ? string.Empty : units);
        }