Exemplo n.º 1
0
        public IEnumerable <VeracodeApp> GetAllApps()
        {
            var     xml  = _wrapper.GetAppList();
            AppList list = XmlParseHelper.Parse <AppList>(xml);

            return(list.Apps);
        }
Exemplo n.º 2
0
        public IEnumerable <VeracodeApp> GetAllApps()
        {
            var xml = _wrapper.GetAppList();

            if (string.IsNullOrWhiteSpace(xml))
            {
                return(new VeracodeApp[0]);
            }

            AppList list = XmlParseHelper.Parse <AppList>(xml);

            return(list.Apps);
        }
        public IEnumerable <AppType> GetAllApps()
        {
            var xml = _wrapper.GetAppList();

            return(XmlParseHelper.Parse <applist>(xml).app ?? new AppType[0]);
        }