public static KeyValue[] GetCustomAttrsEx(string[] customIDs)
        {
            IWFWorkflowService svc = Common.GetWorkFlowAPI();

            KeyValue[] keyValues = null;
            try
            {
                keyValues = svc.GetCustomAttrsEx(customIDs);
            }
            catch (Exception ex)
            { }

            return(keyValues);
        }