在 C# XmlSchema 中查找 schemaLocation

发布于 2024-09-28 02:46:53 字数 242 浏览 4 评论 0原文

我将以下架构加载到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

躲猫猫 2024-10-05 02:46:53

我终于用了这个:

schema.Includes[0] as XmlSchemaImport;
var wsdlId = schemaImport.SchemaLocation;

i finally used this :

schema.Includes[0] as XmlSchemaImport;
var wsdlId = schemaImport.SchemaLocation;
走过海棠暮 2024-10-05 02:46:53
using System.Xml.Schema;
using System.IO;
using System.Reflection;

这应该可以工作,可能会引发一些错误,因为我没有在 IDE 中编译它,因为我不在开发机器 atm 上。

string xsd = "example.xsd";

FileStream fs;
XmlSchema schema;

fs = new FileStream(xsd, FileMode.Open);
schema = XmlSchema.Read(fs, new ValidationEventHandler(ShowCompileError));

foreach (XmlSchemaObject externalSchema in schema.Includes)
{
    string schemaLoc = (XmlSchemaExternal)externalSchema.SchemaLocation.ToString();
}
using System.Xml.Schema;
using System.IO;
using System.Reflection;

This should work, might throw some errors, as I didnt compile it in an IDE as im not on a Dev machine atm.

string xsd = "example.xsd";

FileStream fs;
XmlSchema schema;

fs = new FileStream(xsd, FileMode.Open);
schema = XmlSchema.Read(fs, new ValidationEventHandler(ShowCompileError));

foreach (XmlSchemaObject externalSchema in schema.Includes)
{
    string schemaLoc = (XmlSchemaExternal)externalSchema.SchemaLocation.ToString();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文