Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QXmlStreamAttribute class represents a single XML attribute More...
Public Member Functions | |
override bool | Equals (object o) |
override int | GetHashCode () |
QXmlStreamAttribute () | |
| |
QXmlStreamAttribute (QXmlStreamAttribute arg1) | |
| |
QXmlStreamAttribute (string qualifiedName, string value) | |
| |
QXmlStreamAttribute (string namespaceUri, string name, string value) | |
| |
virtual void | CreateProxy () |
new bool | IsDefault () |
| |
new QStringRef | Name () |
| |
new QStringRef | NamespaceUri () |
| |
new QStringRef | Prefix () |
| |
new QStringRef | QualifiedName () |
| |
new QStringRef | Value () |
| |
new void | Dispose () |
Static Public Member Functions | |
static bool | operator!= (QXmlStreamAttribute arg1, QXmlStreamAttribute arg2) |
| |
static bool | operator== (QXmlStreamAttribute arg1, QXmlStreamAttribute arg2) |
| |
Protected Member Functions | |
QXmlStreamAttribute (System.Type dummy) | |
Protected Attributes | |
SmokeInvocation | interceptor |
Properties | |
virtual System.IntPtr | SmokeObject [get, set] |
The QXmlStreamAttribute class represents a single XML attribute
An attribute consists of an optionally empty namespaceUri(), a name(), a value(), and an isDefault() attribute.
The raw XML attribute name is returned as qualifiedName().
|
protected |
QtCore.QXmlStreamAttribute.QXmlStreamAttribute | ( | ) |
Creates an empty attribute.
QtCore.QXmlStreamAttribute.QXmlStreamAttribute | ( | QXmlStreamAttribute | arg1 | ) |
Creates a copy of other.
QtCore.QXmlStreamAttribute.QXmlStreamAttribute | ( | string | qualifiedName, |
string | value | ||
) |
Constructs an attribute with qualified name qualifiedName and value value.
QtCore.QXmlStreamAttribute.QXmlStreamAttribute | ( | string | namespaceUri, |
string | name, | ||
string | value | ||
) |
Constructs an attribute in the namespace described with namespaceUri with name and value value.
|
virtual |
new void QtCore.QXmlStreamAttribute.Dispose | ( | ) |
override bool QtCore.QXmlStreamAttribute.Equals | ( | object | o | ) |
override int QtCore.QXmlStreamAttribute.GetHashCode | ( | ) |
new bool QtCore.QXmlStreamAttribute.IsDefault | ( | ) |
Returns true if the parser added this attribute with a default value following an ATTLIST declaration in the DTD; otherwise returns false.
new QStringRef QtCore.QXmlStreamAttribute.Name | ( | ) |
Returns the attribute's local name.
new QStringRef QtCore.QXmlStreamAttribute.NamespaceUri | ( | ) |
Returns the attribute's resolved namespaceUri, or an empty string reference if the attribute does not have a defined namespace.
|
static |
Compares this attribute with other and returns true if they are not equal; otherwise returns false.
|
static |
Compares this attribute with other and returns true if they are equal; otherwise returns false.
new QStringRef QtCore.QXmlStreamAttribute.Prefix | ( | ) |
Returns the attribute's namespace prefix.
This function was introduced in Qt 4.4.
See also name() and qualifiedName().
new QStringRef QtCore.QXmlStreamAttribute.QualifiedName | ( | ) |
Returns the attribute's qualified name.
A qualified name is the raw name of an attribute in the XML data. It consists of the namespace prefix(), followed by colon, followed by the attribute's local name(). Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn't use qualifiedName(), but the resolved namespaceUri() and the attribute's local name().
new QStringRef QtCore.QXmlStreamAttribute.Value | ( | ) |
Returns the attribute's value.
|
protected |
|
getset |