Exemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Allus.Keepcon.Export.Export exp = new Allus.Keepcon.Export.Export();

            Allus.Keepcon.Export.Content c = new Allus.Keepcon.Export.Content();
            c.Id                 = 12121;
            c.ModerationDate     = 23123432432;
            c.ModerationDecision = "APPROVED";
            exp.Contents.Add(c);

            c                    = new Allus.Keepcon.Export.Content();
            c.Id                 = 1111;
            c.ModerationDate     = 23123432432;
            c.ModerationDecision = "REJECTED";
            c.Tagging.Add(new Allus.Keepcon.Export.Tag("Inapropiado")); exp.Contents.Add(c);


            txtImport.Text = exp.GetXml();
        }
Exemplo n.º 2
0
        private void button2_Click(object sender, EventArgs e)
        {


            Allus.Keepcon.Export.Export exp = new Allus.Keepcon.Export.Export();

            Allus.Keepcon.Export.Content c = new Allus.Keepcon.Export.Content();
            c.Id = 12121;
            c.ModerationDate = 23123432432;
            c.ModerationDecision = "APPROVED";
            exp.Contents.Add(c);

            c = new Allus.Keepcon.Export.Content();
            c.Id = 1111;
            c.ModerationDate = 23123432432;
            c.ModerationDecision = "REJECTED";
            c.Tagging.Add(new Allus.Keepcon.Export.Tag("Inapropiado")); exp.Contents.Add(c);


            txtImport.Text = exp.GetXml();
        }