Beispiel #1
0
        public void CreateLinks50ParseBusinessEntityPrintPage()
        {
            var log         = new StringWriter();
            var parseEntity = new Source50PrintPageParser(TextURL.Text, _investigationId);

            log.Write(parseEntity.ParseEntitiyURL(false));
            LabelGen50ic.Text = log.ToString().Replace("\r\n", "<br />\r\n");
        }
Beispiel #2
0
        public void CreateLinksSrc50ParseSearchResults()
        {
            var log         = new StringWriter();
            var parseresult = new Source50SearchByAgentResultsParseToPrintEntityDetailsFormat(TextURL.Text, _investigationId);
            var links       = parseresult.GetEntityDetailsPagesLinks(log);

            foreach (var link in links)
            {
                var parseEntity = new Source50PrintPageParser(link, _investigationId);
                log.Write(parseEntity.ParseEntitiyURL(false));
            }
            LabelGen50ic.Text = log.ToString().Replace("\r\n", "<br />\r\n");
        }
Beispiel #3
0
        [Test] public void TestNVparser()
        {
            var parser = new Source50PrintPageParser("https://esos.state.nv.us/SoSServices/AnonymousAccess/CorpSearch/PrintCorp.aspx?lx8nvq=GsZs0e2M6dadBn%252fJvzv4og%253d%253d", 99);

            Console.Write(parser.ParseEntitiyURL(true));
        }