如何从存储为资源的字符串或 .xsd 创建 XmlSchema 实例
我有一个 .xsd 文件作为资源存储在我的 vb.net 项目中。我需要使用此资源创建 XmlSchema 类的实例。我可以找到的任何创建 XmlSchema 的示例都执行以下操作之一: 通过手动添加元素和属性来创建 xmlschema,例如 这个例子。 使用 XmlTextReader 创建 xmlschema,该 XmlTextReader 需要物理文件的路径,例如
这些例子都不适用于我的情况。我需要使用存储为资源的 .xsd 或类似的可轻松从资源文件中提取的字符串来创建 XmlSchema。
如有任何帮助,我们将不胜感激。
I have an .xsd file stored as a resource in my vb.net project. I need to create an instance of the XmlSchema class using this resource. Any examples of creating an XmlSchema I can locate do one of the following:
Create the xmlschema by adding elements and attributes manually like this example.
Create the xmlschema using an XmlTextReader which requires a path to a physical file like this example.
Neither of these examples apply to my situation. I need to create an XmlSchema using either the .xsd stored as a resource or similarly the string that is easily extracted from the resource file.
Any assistance is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过更多挖掘,我最终得到了以下解决方案:
After more digging I ended up with the following solution: