XmlSchemaDocumentation | System.Xml.Schema (system.xml.dll) class |
public class XmlSchemaDocumentation : XmlSchemaObject {
// Public Constructors
public XmlSchemaDocumentation( );
// Public Instance Properties
public string Language{set; get; }
public XmlNode[ ] Markup{set; get; }
public string Source{set; get; }
} | |
This
type is used to represent the xs:documentation XML
Schema element, which provides human-readable information about the
XML Schema element it decorates. It is only valid as a child of a
XmlSchemaAnnotation element. Since any content is
valid within the xs:documentation element, the
content is accessible through the Markup property,
which returns an array of System.Xml.XmlNodes.
Hierarchy
System.Object XmlSchemaObject
XmlSchemaDocumentation
|