在 C# XmlSchema 中查找 schemaLocation
我将以下架构加载到 xmlSchema 中:
...
<xs:import schemaLocation="\_1.xsd" namespace="http://tempuri.org/" />
...
我想检索字符串“_1.xsd”,
如何从 XmlSchema API 获取 schemaLocation 值? schemaSet 会工作得更好吗?
谢谢
i have the following schema loaded into an xmlSchema :
...
<xs:import schemaLocation="\_1.xsd" namespace="http://tempuri.org/" />
...
i want to retrive the string "_1.xsd"
how do i reach the schemaLocation value from XmlSchema API ?
will schemaSet work better ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我终于用了这个:
i finally used this :
这应该可以工作,可能会引发一些错误,因为我没有在 IDE 中编译它,因为我不在开发机器 atm 上。
This should work, might throw some errors, as I didnt compile it in an IDE as im not on a Dev machine atm.