[]
Represents a custom XML data storage in the document.
public class CustomXmlPart : IEquatable<CustomXmlPart>
Gets whether the part is built-in (doc properties or app properties part).
public bool BuiltIn { get; }
Gets the content type of the part.
public string ContentType { get; }
Gets a globally unique identifier (GUID) that uniquely identifies this part in the document. Old version of Microsoft Word allowed any strings, but the new format requires a Guid string.
public string Id { get; }
Gets the list of XML schemes that are associated with the part. Any number of XML schemes can be referenced, and this list of schemes shall then be used to validate the contents of the part.
public List<string> Schemas { get; }
Gets the XmlDocument that contains data of the part.
public XmlDocument XmlDocument { get; }
Determines whether the specified CustomXmlPart is equal to the current object.
public bool Equals(CustomXmlPart right)
right
CustomXmlPartThe CustomXmlPart to compare with the current object.
True if the specified CustomXmlPart is equal to the current object; otherwise, false.
public override bool Equals(object obj)
obj
objectpublic override int GetHashCode()