CustomXmlSchemaCollection

CustomXmlSchemaCollection class

表示与自定义 XML 部分关联的 XML 架构的字符串集合。

要了解更多信息,请访问结构化文档标签或内容控制文档文章。

public class CustomXmlSchemaCollection : IEnumerable<string>

特性

姓名描述
Count { get; }获取集合中包含的元素数量。
Item { get; set; }获取或设置指定索引处的元素。

方法

姓名描述
Add(string)将项目添加到集合中。
Clear()从集合中删除所有元素。
Clone()对此对象进行深度克隆。
GetEnumerator()返回一个枚举器对象,可用于迭代集合中的所有项目。
IndexOf(string)返回集合中指定值的从零开始的索引。
Remove(string)从集合中删除指定值。
RemoveAt(int)删除指定索引处的值。

评论

您不创建此类的实例。您可以通过以下方式访问自定义 XML part 的 XML 架构集合:Schemas财产。

例子

展示如何使用 XML 架构集合。

Document doc = new Document();

string xmlPartId = Guid.NewGuid().ToString("B");
string xmlPartContent = "<root><text>Hello, World!</text></root>";
CustomXmlPart xmlPart = doc.CustomXmlParts.Add(xmlPartId, xmlPartContent);

// 添加 XML 模式关联。
xmlPart.Schemas.Add("http://www.w3.org/2001/XMLSchema");

// 克隆自定义 XML 部分的 XML 模式关联集合,
// 然后将几个新模式添加到克隆中。
CustomXmlSchemaCollection schemas = xmlPart.Schemas.Clone();
schemas.Add("http://www.w3.org/2001/XMLSchema-instance");
schemas.Add("http://schemas.microsoft.com/office/2006/metadata/contentType");

Assert.AreEqual(3, schemas.Count);
Assert.AreEqual(2, schemas.IndexOf("http://schemas.microsoft.com/office/2006/metadata/contentType"));

// 枚举模式并打印每个元素。
using (IEnumerator<string> enumerator = schemas.GetEnumerator())
{
    while (enumerator.MoveNext())
        Console.WriteLine(enumerator.Current);
}

// 以下是从集合中删除模式的三种方法。
// 1 - 按索引删除模式:
schemas.RemoveAt(2);

// 2 - 按值删除模式:
schemas.Remove("http://www.w3.org/2001/XMLSchema");

// 3 - 使用“Clear”方法立即清空集合。
schemas.Clear();

Assert.AreEqual(0, schemas.Count);

也可以看看