根据 xsd 作为字符串验证 xml 作为内存流
我想根据 XSD (VB.NET) 验证 xml。我的函数如下所示:
Private Function ValidateXML(ByVal xml As MemoryStream, ByVal xsd As String) As ArrayList
End Function
当我的 xml 是内存流/流(我使用流,因为我不需要存储 xml)并且我的 xsd 是一个字符串(我从网络服务获取我的 xsd)时,如何进行验证作为字符串,我不需要将其存储在文件中)?
非常感谢您的帮助!
I want to validate xml against XSD (VB.NET). My function look like this:
Private Function ValidateXML(ByVal xml As MemoryStream, ByVal xsd As String) As ArrayList
End Function
How can I do the validation when my xml is a memorystream/stream (I use stream because I don’t need to store the xml) and my xsd is a string (I get my xsd from a web servise as a string, and I do not need to store it in a file)?
Thanks a lot for all help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是这样的。
Something like this perhaps.