在 LINQ to XML 中写出命名空间属性
我想通过 C# 使用 LINQ to XML 编写以下 XAML。
<Activity x:Class="WorkflowConsoleApplication1.Activity1" mva:VisualBasic.Settings="Assembly references and imported namespaces for internal implementation"> </Activity>
如何指定 XNamespace 来执行此操作以实现上述输出?
I'd like to write out the following XAML using LINQ to XML via C#.
<Activity x:Class="WorkflowConsoleApplication1.Activity1" mva:VisualBasic.Settings="Assembly references and imported namespaces for internal implementation"> </Activity>
How do I specify the XNamespace for doing this to achieve the above output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码将执行此操作:
请注意,您如何不指定前缀,而是指定这些属性所属的命名空间。这是设计使然,并且符合 XML 规范。前缀将自动生成,或者如果该元素是另一个已经为您正在使用的命名空间定义前缀的元素的子元素,则从包含元素中获取前缀。
This code will do it:
Notice how you do not specify the prefixes, but rather the namespaces that these attributes belong to. This is by design and consistent with the XML spec. Prefixes will be generated automatically, or picked up from the containing element if this element is a child of another element that has already defined a prefix for the namespaces you're using.