-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
78 lines (67 loc) · 1.64 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using Microsoft.AspNetCore.Mvc;
using System.Xml;
using System.Xml.XPath;
using System.Text;
[ApiController]
[Route("test")]
public class Program : ControllerBase
{
[HttpGet]
[Route("a")]
public IActionResult GetA(string q)
{
Stream s = new MemoryStream(Encoding.UTF8.GetBytes(q));
XmlTextReader reader = new XmlTextReader(s);
while (reader.Read())
{
Console.WriteLine(reader.Name);
Console.WriteLine(reader.Value);
}
reader.Close();
return Ok(new
{
Message = "A q: " + q,
});
}
[HttpGet]
[Route("b")]
public IActionResult GetB(string q)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(q);
var l = doc.GetElementsByTagName("foo");
Console.WriteLine(l.Count);
for (int i = 0; i < l.Count; i++)
{
Console.WriteLine(l[i].InnerText);
}
return Ok(new
{
Message = "B q: " + q,
});
}
[HttpGet]
[Route("c")]
public IActionResult GetC(string q)
{
XPathDocument doc = new XPathDocument(new StringReader(q));
var nav = doc.CreateNavigator();
var i = nav.Select("//foo");
while (i.MoveNext())
{
Console.WriteLine(i.Current.Value);
}
return Ok(new
{
Message = "C q: " + q,
});
}
static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
var app = builder.Build();
app.MapControllers();
app.Run();
}
}