System::Xml::Schema::XmlSchemaComplexContent class

XmlSchemaComplexContent class

Represents the complexContent element from XML Schema as specified by the World Wide Web Consortium (W3C). This class represents the complex content model for complex types. It contains extensions or restrictions on a complex type that has either only elements or mixed content.

class XmlSchemaComplexContent : public System::Xml::Schema::XmlSchemaContentModel

Methods

MethodDescription
get_Content() overrideReturns the content.
get_IsMixed()Returns information that determines if the type has a mixed content model.
set_Content(SharedPtr<XmlSchemaContent>) overrideSets the content.
set_IsMixed(bool)Sets information that determines if the type has a mixed content model.
XmlSchemaComplexContent()Initializes a new instance of the XmlSchemaComplexContent class.

Typedefs

TypedefDescription
PtrAn alias for shared pointer to an instance of this class.

Remarks

Objects of this class should only be allocated using System::MakeObject() function. Never create instances of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

See Also