Method | Description | |
---|---|---|
Attribute ( string name ) : Attribute |
Gets the attribute with the specified name.
|
|
AttributeValue ( string name ) : string |
Gets the value of the attribute with the specified name.
|
|
Element ( string name ) : System |
Initializes a new instance of the Element class. Manually constructed nodes are immutable and are not added to the database.
|
|
InsertAttribute ( string name, string value ) : void |
Inserts a new attribute with the specified name and value.
|
|
RemoveAll ( ) : void | ||
RemoveAllAttributes ( ) : void |
Removes all the attributes from this element. This can only be used on database nodes. If the node is invalid this does nothing.
|
|
RemoveAttribute ( string name ) : void |
Removes an attribute with the specified name. This can only be used on database nodes. If the node is invalid this does nothing.
|
Method | Description | |
---|---|---|
CreateXmlNode ( ) : |
Method | Description | |
---|---|---|
AttributeANode ( string name ) : ANode | ||
Element ( ANode aNode, Database database ) : System |
public Attribute ( string name ) : Attribute | ||
name | string | The name of the attribute to get. |
return | Attribute |
public AttributeValue ( string name ) : string | ||
name | string | The name of the attribute to get a value for. |
return | string |
public Element ( string name ) : System | ||
name | string | The name of the element. |
return | System |
public InsertAttribute ( string name, string value ) : void | ||
name | string | The name of the new attribute. |
value | string | The value of the new attribute. |
return | void |
public RemoveAttribute ( string name ) : void | ||
name | string | The name of the attribute to remove. |
return | void |