コード例 #1
0
        public static WFDelegation GetDelegation(string delegationID)
        {
            IWFAdminService svc        = Common.GetAdminAPI();
            WFDelegation    delegation = null;

            try
            {
                delegation = svc.GetDelegation(delegationID);
            }
            catch (Exception ex)
            { }
            return(delegation);
        }