0

我需要在 C# 中使用/解析 .ashx 文件。我可以使用 xsd.exe 创建强类型 C# 类并将其添加到我的项目中。但是 .ashx 的架构可能随时更改。

所以,我不想使用像 xsd 这样的命令行实用程序来创建 C# 类。

有什么方法可以从 .ashx 动态创建 C# 类并使用该类来解析 .ashx 内容?

4

1 回答 1

0

I assume that what you need to parse/consume is the XML produced by the .ashx handler.

There is no way I know of to generate a class directly using .NET functions - you could call xsd.exe and then load and compile the generated code - quite a hack.

于 2012-04-19T12:24:28.643 回答