An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes. More...

#include "xml_schema.h"

Inherits System::Xml::Schema::XmlSchemaObject.

Public Types

using Ptr = SharedPtr< XmlSchema >
 An alias for shared pointer to an instance of this class. More...
 
- Public Types inherited from System::Xml::Schema::XmlSchemaObject
using Ptr = SharedPtr< XmlSchemaObject >
 An alias for shared pointer to an instance of this class. More...
 
- Public Types inherited from System::Object
typedef SmartPtr< Objectptr
 Alias for smart pointer type. More...
 

Public Member Functions

ASPOSECPP_SHARED_API XmlSchemaForm get_AttributeFormDefault ()
 Returns the form for attributes declared in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API void set_AttributeFormDefault (XmlSchemaForm value)
 Sets the form for attributes declared in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API XmlSchemaDerivationMethod get_BlockDefault ()
 Returns the blockDefault attribute which sets the default value of the block attribute on element and complex types in the targetNamespace of the schema. More...
 
ASPOSECPP_SHARED_API void set_BlockDefault (XmlSchemaDerivationMethod value)
 Sets the blockDefault attribute which sets the default value of the block attribute on element and complex types in the targetNamespace of the schema. More...
 
ASPOSECPP_SHARED_API XmlSchemaDerivationMethod get_FinalDefault ()
 Returns the finalDefault attribute which sets the default value of the final attribute on elements and complex types in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API void set_FinalDefault (XmlSchemaDerivationMethod value)
 Sets the finalDefault attribute which sets the default value of the final attribute on elements and complex types in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API XmlSchemaForm get_ElementFormDefault ()
 Returns the form for elements declared in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API void set_ElementFormDefault (XmlSchemaForm value)
 Sets the form for elements declared in the target namespace of the schema. More...
 
ASPOSECPP_SHARED_API String get_TargetNamespace ()
 Returns the Uniform Resource Identifier (URI) of the schema target namespace. More...
 
ASPOSECPP_SHARED_API void set_TargetNamespace (const String &value)
 Sets the Uniform Resource Identifier (URI) of the schema target namespace. More...
 
ASPOSECPP_SHARED_API String get_Version ()
 Returns the version of the schema. More...
 
ASPOSECPP_SHARED_API void set_Version (const String &value)
 Sets the version of the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectCollectionget_Includes ()
 Returns the collection of included and imported schemas. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectCollectionget_Items ()
 Returns the collection of schema elements in the schema and is used to add new element types at the schema element level. More...
 
ASPOSECPP_SHARED_API bool get_IsCompiled ()
 Indicates if the schema has been compiled. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_Attributes ()
 Returns the post-schema-compilation value for all the attributes in the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_AttributeGroups ()
 Returns the post-schema-compilation value of all the global attribute groups in the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_SchemaTypes ()
 Returns the post-schema-compilation value of all schema types in the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_Elements ()
 Returns the post-schema-compilation value for all the elements in the schema. More...
 
ASPOSECPP_SHARED_API String get_Id ()
 Returns the string ID. More...
 
ASPOSECPP_SHARED_API void set_Id (const String &value)
 Sets the string ID. More...
 
ASPOSECPP_SHARED_API ArrayPtr< SharedPtr< XmlAttribute > > get_UnhandledAttributes ()
 Returns the qualified attributes which do not belong to the schema target namespace. More...
 
ASPOSECPP_SHARED_API void set_UnhandledAttributes (const ArrayPtr< SharedPtr< XmlAttribute >> &value)
 Sets the qualified attributes which do not belong to the schema target namespace. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_Groups ()
 Returns the post-schema-compilation value of all the groups in the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectTableget_Notations ()
 Returns the post-schema-compilation value for all notations in the schema. More...
 
ASPOSECPP_SHARED_API XmlSchema ()
 Initializes a new instance of the XmlSchema class. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< IO::Stream > &stream)
 Writes the XML Schema to the supplied data stream. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< IO::Stream > &stream, const SharedPtr< XmlNamespaceManager > &namespaceManager)
 Writes the XML Schema to the supplied Stream using the XmlNamespaceManager specified. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< IO::TextWriter > &writer)
 Writes the XML Schema to the supplied IO::TextWriter. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< IO::TextWriter > &writer, const SharedPtr< XmlNamespaceManager > &namespaceManager)
 Writes the XML Schema to the supplied TextWriter. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< XmlWriter > &writer)
 Writes the XML Schema to the supplied XmlWriter. More...
 
ASPOSECPP_SHARED_API void Write (const SharedPtr< XmlWriter > &writer, const SharedPtr< XmlNamespaceManager > &namespaceManager)
 Writes the XML Schema to the supplied XmlWriter. More...
 
ASPOSECPP_SHARED_API void Compile (ValidationEventHandler validationEventHandler)
 Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation. More...
 
ASPOSECPP_SHARED_API void Compile (ValidationEventHandler validationEventHandler, const SharedPtr< XmlResolver > &resolver)
 Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation. More...
 
- Public Member Functions inherited from System::Xml::Schema::XmlSchemaObject
ASPOSECPP_SHARED_API int32_t get_LineNumber ()
 Returns the line number in the file to which the schema element refers. More...
 
ASPOSECPP_SHARED_API void set_LineNumber (int32_t value)
 Sets the line number in the file to which the schema element refers. More...
 
ASPOSECPP_SHARED_API int32_t get_LinePosition ()
 Returns the line position in the file to which the schema element refers. More...
 
ASPOSECPP_SHARED_API void set_LinePosition (int32_t value)
 Sets the line position in the file to which the schema element refers. More...
 
ASPOSECPP_SHARED_API String get_SourceUri ()
 Returns the source location for the file that loaded the schema. More...
 
ASPOSECPP_SHARED_API void set_SourceUri (const String &value)
 Sets the source location for the file that loaded the schema. More...
 
ASPOSECPP_SHARED_API SharedPtr< XmlSchemaObjectget_Parent ()
 Returns the parent of this XmlSchemaObject. More...
 
ASPOSECPP_SHARED_API void set_Parent (const SharedPtr< XmlSchemaObject > &value)
 Sets the parent of this XmlSchemaObject. More...
 
ASPOSECPP_SHARED_API SharedPtr< System::Xml::Serialization::XmlSerializerNamespacesget_Namespaces ()
 Returns the XmlSerializerNamespaces to use with this schema object. More...
 
ASPOSECPP_SHARED_API void set_Namespaces (const SharedPtr< System::Xml::Serialization::XmlSerializerNamespaces > &value)
 Sets the XmlSerializerNamespaces to use with this schema object. More...
 
ASPOSECPP_SHARED_API XmlSchemaObject ()
 Initializes a new instance of the XmlSchemaObject class. More...
 
- Public Member Functions inherited from System::Object
ASPOSECPP_SHARED_API Object ()
 Creates object. Initializes all internal data structures. More...
 
virtual ASPOSECPP_SHARED_API ~Object ()
 Destroys object. Frees all internal data structures. More...
 
ASPOSECPP_SHARED_API Object (Object const &x)
 Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
Objectoperator= (Object const &x)
 Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
ObjectSharedRefAdded ()
 Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int SharedRefRemovedSafe ()
 Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int RemovedSharedRefs (int count)
 Decreases shared reference count by specified value. More...
 
Detail::SmartPtrCounter * WeakRefAdded ()
 Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
void WeakRefRemoved ()
 Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
Detail::SmartPtrCounter * GetCounter ()
 Gets reference counter data structure associated with the object. More...
 
int SharedCount () const
 Gets current value of shared reference counter. More...
 
ASPOSECPP_SHARED_API void Lock ()
 Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
 
ASPOSECPP_SHARED_API void Unlock ()
 Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
 
virtual ASPOSECPP_SHARED_API bool Equals (ptr obj)
 Compares objects using C# Object.Equals semantics. More...
 
virtual ASPOSECPP_SHARED_API int32_t GetHashCode () const
 Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
 
virtual ASPOSECPP_SHARED_API String ToString () const
 Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
 
virtual ASPOSECPP_SHARED_API ptr MemberwiseClone () const
 Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
 
virtual ASPOSECPP_SHARED_API const TypeInfoGetType () const
 Gets actual type of object. Analog of C# System.Object.GetType() call. More...
 
virtual ASPOSECPP_SHARED_API bool Is (const TypeInfo &targetType) const
 Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
 
virtual ASPOSECPP_SHARED_API void SetTemplateWeakPtr (uint32_t argument)
 Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
 
virtual ASPOSECPP_SHARED_API bool FastCast (const Details::FastRttiBase &helper, void **out_ptr) const
 For internal purposes only. More...
 
template<>
bool Equals (float const &objA, float const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool Equals (double const &objA, double const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool ReferenceEquals (String const &str, std::nullptr_t)
 Specialization of Object::ReferenceEquals for case of string and nullptr. More...
 
template<>
bool ReferenceEquals (String const &str1, String const &str2)
 Specialization of Object::ReferenceEquals for case of strings. More...
 

Static Public Member Functions

static ASPOSECPP_SHARED_API SharedPtr< XmlSchemaRead (const SharedPtr< IO::TextReader > &reader, ValidationEventHandler validationEventHandler)
 Reads an XML Schema from the supplied IO::TextReader. More...
 
static ASPOSECPP_SHARED_API SharedPtr< XmlSchemaRead (const SharedPtr< IO::Stream > &stream, ValidationEventHandler validationEventHandler)
 Reads an XML Schema from the supplied stream. More...
 
static ASPOSECPP_SHARED_API SharedPtr< XmlSchemaRead (const SharedPtr< XmlReader > &reader, ValidationEventHandler validationEventHandler)
 Reads an XML Schema from the supplied XmlReader. More...
 
- Static Public Member Functions inherited from System::Object
static bool ReferenceEquals (ptr const &objA, ptr const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, T const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, std::nullptr_t)
 Reference-compares value type object with nullptr. More...
 
template<typename T1 , typename T2 >
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares reference type objects in C# style. More...
 
template<typename T1 , typename T2 >
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares value type objects in C# style. More...
 
static const TypeInfoType ()
 Implements C# typeof(System.Object) construct. More...
 

Static Public Attributes

static const ASPOSECPP_SHARED_API String Namespace
 The XML schema namespace. This field is constant. More...
 
static const ASPOSECPP_SHARED_API String InstanceNamespace
 The XML schema instance namespace. This field is constant. More...
 

Protected Member Functions

virtual ASPOSECPP_SHARED_API ~XmlSchema ()
 

Detailed Description

An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes.

Attention
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.

Member Typedef Documentation

◆ Ptr

An alias for shared pointer to an instance of this class.

Constructor & Destructor Documentation

◆ XmlSchema()

ASPOSECPP_SHARED_API System::Xml::Schema::XmlSchema::XmlSchema ( )

Initializes a new instance of the XmlSchema class.

◆ ~XmlSchema()

virtual ASPOSECPP_SHARED_API System::Xml::Schema::XmlSchema::~XmlSchema ( )
protectedvirtual

Member Function Documentation

◆ Compile() [1/2]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Compile ( ValidationEventHandler  validationEventHandler)

Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation.

Parameters
validationEventHandlerThe validation event handler that receives information about XML Schema validation errors.

◆ Compile() [2/2]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Compile ( ValidationEventHandler  validationEventHandler,
const SharedPtr< XmlResolver > &  resolver 
)

Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation.

Parameters
validationEventHandlerThe validation event handler that receives information about the XML Schema validation errors.
resolverThe XmlResolver used to resolve namespaces referenced in include and import elements.

◆ get_AttributeFormDefault()

ASPOSECPP_SHARED_API XmlSchemaForm System::Xml::Schema::XmlSchema::get_AttributeFormDefault ( )

Returns the form for attributes declared in the target namespace of the schema.

Returns
The XmlSchemaForm value that indicates if attributes from the target namespace are required to be qualified with the namespace prefix. The default is XmlSchemaForm::None.

◆ get_AttributeGroups()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_AttributeGroups ( )

Returns the post-schema-compilation value of all the global attribute groups in the schema.

Returns
An XmlSchemaObjectTable collection of all the global attribute groups in the schema.

◆ get_Attributes()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_Attributes ( )

Returns the post-schema-compilation value for all the attributes in the schema.

Returns
An XmlSchemaObjectTable collection of all the attributes in the schema.

◆ get_BlockDefault()

ASPOSECPP_SHARED_API XmlSchemaDerivationMethod System::Xml::Schema::XmlSchema::get_BlockDefault ( )

Returns the blockDefault attribute which sets the default value of the block attribute on element and complex types in the targetNamespace of the schema.

Returns
An XmlSchemaDerivationMethod value representing the different methods for preventing derivation. The default value is XmlSchemaDerivationMethod::None.

◆ get_ElementFormDefault()

ASPOSECPP_SHARED_API XmlSchemaForm System::Xml::Schema::XmlSchema::get_ElementFormDefault ( )

Returns the form for elements declared in the target namespace of the schema.

Returns
The XmlSchemaForm value that indicates if elements from the target namespace are required to be qualified with the namespace prefix. The default is XmlSchemaForm::None.

◆ get_Elements()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_Elements ( )

Returns the post-schema-compilation value for all the elements in the schema.

Returns
An XmlSchemaObjectTable collection of all the elements in the schema.

◆ get_FinalDefault()

ASPOSECPP_SHARED_API XmlSchemaDerivationMethod System::Xml::Schema::XmlSchema::get_FinalDefault ( )

Returns the finalDefault attribute which sets the default value of the final attribute on elements and complex types in the target namespace of the schema.

Returns
An XmlSchemaDerivationMethod value representing the different methods for preventing derivation. The default value is XmlSchemaDerivationMethod::None.

◆ get_Groups()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_Groups ( )

Returns the post-schema-compilation value of all the groups in the schema.

Returns
An XmlSchemaObjectTable collection of all the groups in the schema.

◆ get_Id()

ASPOSECPP_SHARED_API String System::Xml::Schema::XmlSchema::get_Id ( )

Returns the string ID.

Returns
The ID of the string. The default value is String::Empty.

◆ get_Includes()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectCollection> System::Xml::Schema::XmlSchema::get_Includes ( )

Returns the collection of included and imported schemas.

Returns
An XmlSchemaObjectCollection of the included and imported schemas.

◆ get_IsCompiled()

ASPOSECPP_SHARED_API bool System::Xml::Schema::XmlSchema::get_IsCompiled ( )

Indicates if the schema has been compiled.

Returns
true if schema has been compiled, otherwise, false. The default value is false.

◆ get_Items()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectCollection> System::Xml::Schema::XmlSchema::get_Items ( )

Returns the collection of schema elements in the schema and is used to add new element types at the schema element level.

Returns
An XmlSchemaObjectCollection of schema elements in the schema.

◆ get_Notations()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_Notations ( )

Returns the post-schema-compilation value for all notations in the schema.

Returns
An XmlSchemaObjectTable collection of all notations in the schema.

◆ get_SchemaTypes()

ASPOSECPP_SHARED_API SharedPtr<XmlSchemaObjectTable> System::Xml::Schema::XmlSchema::get_SchemaTypes ( )

Returns the post-schema-compilation value of all schema types in the schema.

Returns
An XmlSchemaObjectCollection of all schema types in the schema.

◆ get_TargetNamespace()

ASPOSECPP_SHARED_API String System::Xml::Schema::XmlSchema::get_TargetNamespace ( )

Returns the Uniform Resource Identifier (URI) of the schema target namespace.

Returns
The schema target namespace.

◆ get_UnhandledAttributes()

ASPOSECPP_SHARED_API ArrayPtr<SharedPtr<XmlAttribute> > System::Xml::Schema::XmlSchema::get_UnhandledAttributes ( )

Returns the qualified attributes which do not belong to the schema target namespace.

Returns
An array of qualified XmlAttribute objects that do not belong to the schema target namespace.

◆ get_Version()

ASPOSECPP_SHARED_API String System::Xml::Schema::XmlSchema::get_Version ( )

Returns the version of the schema.

Returns
The version of the schema. The default value is String::Empty.

◆ Read() [1/3]

static ASPOSECPP_SHARED_API SharedPtr<XmlSchema> System::Xml::Schema::XmlSchema::Read ( const SharedPtr< IO::TextReader > &  reader,
ValidationEventHandler  validationEventHandler 
)
static

Reads an XML Schema from the supplied IO::TextReader.

Parameters
readerThe IO::TextReader containing the XML Schema to read.
validationEventHandlerThe validation event handler that receives information about the XML Schema syntax errors.
Returns
The XmlSchema object representing the XML Schema.
Exceptions
XmlSchemaExceptionAn XmlSchemaException is raised if no ValidationEventHandler is specified.

◆ Read() [2/3]

static ASPOSECPP_SHARED_API SharedPtr<XmlSchema> System::Xml::Schema::XmlSchema::Read ( const SharedPtr< IO::Stream > &  stream,
ValidationEventHandler  validationEventHandler 
)
static

Reads an XML Schema from the supplied stream.

Parameters
streamThe supplied data stream.
validationEventHandlerThe validation event handler that receives information about XML Schema syntax errors.
Returns
The XmlSchema object representing the XML Schema.
Exceptions
XmlSchemaExceptionAn XmlSchemaException is raised if no ValidationEventHandler is specified.

◆ Read() [3/3]

static ASPOSECPP_SHARED_API SharedPtr<XmlSchema> System::Xml::Schema::XmlSchema::Read ( const SharedPtr< XmlReader > &  reader,
ValidationEventHandler  validationEventHandler 
)
static

Reads an XML Schema from the supplied XmlReader.

Parameters
readerThe XmlReader containing the XML Schema to read.
validationEventHandlerThe validation event handler that receives information about the XML Schema syntax errors.
Returns
The XmlSchema object representing the XML Schema.
Exceptions
XmlSchemaExceptionAn XmlSchemaException is raised if no ValidationEventHandler is specified.

◆ set_AttributeFormDefault()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_AttributeFormDefault ( XmlSchemaForm  value)

Sets the form for attributes declared in the target namespace of the schema.

Parameters
valueThe value to set.

◆ set_BlockDefault()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_BlockDefault ( XmlSchemaDerivationMethod  value)

Sets the blockDefault attribute which sets the default value of the block attribute on element and complex types in the targetNamespace of the schema.

Parameters
valueThe value to set.

◆ set_ElementFormDefault()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_ElementFormDefault ( XmlSchemaForm  value)

Sets the form for elements declared in the target namespace of the schema.

Parameters
valueThe value to set.

◆ set_FinalDefault()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_FinalDefault ( XmlSchemaDerivationMethod  value)

Sets the finalDefault attribute which sets the default value of the final attribute on elements and complex types in the target namespace of the schema.

Parameters
valueThe value to set.

◆ set_Id()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_Id ( const String value)

Sets the string ID.

Parameters
valueThe value to set.

◆ set_TargetNamespace()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_TargetNamespace ( const String value)

Sets the Uniform Resource Identifier (URI) of the schema target namespace.

Parameters
valueThe value to set.

◆ set_UnhandledAttributes()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_UnhandledAttributes ( const ArrayPtr< SharedPtr< XmlAttribute >> &  value)

Sets the qualified attributes which do not belong to the schema target namespace.

Parameters
valueThe value to set.

◆ set_Version()

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::set_Version ( const String value)

Sets the version of the schema.

Parameters
valueThe value to set.

◆ Write() [1/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< IO::Stream > &  stream)

Writes the XML Schema to the supplied data stream.

Parameters
streamThe supplied data stream.

◆ Write() [2/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< IO::Stream > &  stream,
const SharedPtr< XmlNamespaceManager > &  namespaceManager 
)

Writes the XML Schema to the supplied Stream using the XmlNamespaceManager specified.

Parameters
streamThe supplied data stream.
namespaceManagerThe XmlNamespaceManager.

◆ Write() [3/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< IO::TextWriter > &  writer)

Writes the XML Schema to the supplied IO::TextWriter.

Parameters
writerThe IO::TextWriter to write to.

◆ Write() [4/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< IO::TextWriter > &  writer,
const SharedPtr< XmlNamespaceManager > &  namespaceManager 
)

Writes the XML Schema to the supplied TextWriter.

Parameters
writerThe IO::TextWriter to write to.
namespaceManagerThe XmlNamespaceManager.

◆ Write() [5/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< XmlWriter > &  writer)

Writes the XML Schema to the supplied XmlWriter.

Parameters
writerThe XmlWriter to write to.
Exceptions
ArgumentNullExceptionThe writer parameter is null.

◆ Write() [6/6]

ASPOSECPP_SHARED_API void System::Xml::Schema::XmlSchema::Write ( const SharedPtr< XmlWriter > &  writer,
const SharedPtr< XmlNamespaceManager > &  namespaceManager 
)

Writes the XML Schema to the supplied XmlWriter.

Parameters
writerThe XmlWriter to write to.
namespaceManagerThe XmlNamespaceManager.

Member Data Documentation

◆ InstanceNamespace

const ASPOSECPP_SHARED_API String System::Xml::Schema::XmlSchema::InstanceNamespace
static

The XML schema instance namespace. This field is constant.

◆ Namespace

const ASPOSECPP_SHARED_API String System::Xml::Schema::XmlSchema::Namespace
static

The XML schema namespace. This field is constant.