System::Xml::XmlQualifiedName class

XmlQualifiedName class

Represents an XML qualified name.

class XmlQualifiedName : public System::Object

Methods

MethodDescription
Equals(SharedPtr<Object>) overrideDetermines whether the specified XmlQualifiedName object is equal to the current XmlQualifiedName object.
get_IsEmpty() constReturns a value indicating whether the XmlQualifiedName is empty.
get_Name() constReturns a string representation of the qualified name of the XmlQualifiedName.
get_Namespace() constReturns a string representation of the namespace of the XmlQualifiedName.
GetHashCode() const overrideReturns the hash code for the XmlQualifiedName.
static ToString(const String&, const String&)Returns the string value of the XmlQualifiedName.
ToString() const overrideReturns the string value of the XmlQualifiedName.
XmlQualifiedName()Initializes a new instance of the XmlQualifiedName class.
XmlQualifiedName(const String&)Initializes a new instance of the XmlQualifiedName class with the specified name.
XmlQualifiedName(const String&, const String&)Initializes a new instance of the XmlQualifiedName class with the specified name and namespace.

Fields

FieldDescription
static EmptyProvides an empty XmlQualifiedName.

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