本文整理汇总了C#中Xml.Foo方法的典型用法代码示例。如果您正苦于以下问题:C# Xml.Foo方法的具体用法?C# Xml.Foo怎么用?C# Xml.Foo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Xml
的用法示例。
在下文中一共展示了Xml.Foo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Xml_Tag_Not_Writes_Blank_XmlNamespaces
public void Xml_Tag_Not_Writes_Blank_XmlNamespaces()
{
const string xmlns = "http://foo.com";
dynamic builder = new Xml();
builder.Foo(new { xmlns = xmlns }, Xml.Fragment(x =>
x.Bar("foobar")
));
var namespaces = FindNamespaces(builder);
Assert.Equal(1, namespaces.Length);
Assert.Equal(xmlns, namespaces[0]);
}
示例2: Xml_Tag_Adds_Nested_XmlNamespace_Properly
public void Xml_Tag_Adds_Nested_XmlNamespace_Properly()
{
const string xmlns = "http://foo.com";
const string xmlns2 = "http://foobar.com";
dynamic builder = new Xml();
builder.Foo(new { xmlns = xmlns }, Xml.Fragment(x =>
x.Bar("foobar", new { xmlns = xmlns2 })
));
var namespaces = FindNamespaces(builder);
Assert.Equal(2, namespaces.Length);
Assert.Equal(xmlns, namespaces[0]);
Assert.Equal(xmlns2, namespaces[1]);
}