Method | Description | |
---|---|---|
AddAttribute ( |
Addes an attribute and attribute value to a node passed in
|
|
AddAttribute ( string xPath, string attributeName, string attributeValue ) : void |
Addes an attribute and attribute value to a node that the xPath resolves to
|
|
AddNode ( |
Adds a node to root
|
|
AddNode ( string nodeName, string nodeValue ) : |
Adds a node to root
|
|
AddNode ( string xPath, string nodeName, string nodeValue ) : |
Adds a node to root named by xPath
|
|
AddNode ( string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
Adds a node with an attribute and attribute value to root
|
|
AddNode ( string xPath, string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
Adds a node to root named by xPath
|
|
AddRootElement ( string nodeName ) : |
Adds the nodeName as the root element
|
|
AddXMLDoc ( |
Combines to xml documents into one.
|
|
ConvertDateXML ( string xmlDate ) : string |
Converts the common xml date to normal date
|
|
CreateNode ( string nodeName, int nodeValue ) : |
Creates and returns an XmlNode. This does not place it in the DOM.
|
|
CreateNode ( string nodeName, int nodeValue, string attributeName, int attributeValue ) : |
Creates and returns an XmlNode with an attribute and attribute value. This does not place it in the DOM.
|
|
CreateNode ( string nodeName, int nodeValue, string attributeName, string attributeValue ) : |
Creates and returns an XmlNode with an attribute and attribute value. This does not place it in the DOM.
|
|
CreateNode ( string nodeName, string nodeValue ) : |
Creates and returns an XmlNode. This does not place it in the DOM.
|
|
CreateNode ( string nodeName, string nodeValue, string attributeName, int attributeValue ) : |
Creates and returns an XmlNode with an attribute and attribute value. This does not place it in the DOM.
|
|
CreateNode ( string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
Creates and returns an XmlNode with an attribute and attribute value. This does not place it in the DOM.
|
|
DeleteNode ( |
Delete node
|
|
DeleteNode ( string xPath ) : bool |
Delete node
|
|
DeleteNodes ( |
Delete multiple nodes
|
|
DeleteNodes ( string xPath ) : bool |
Delete multiple nodes
|
|
EditAttribute ( string xPath, string attributeName, string attributeValue ) : |
Edit the value of an attribute
|
|
EditNode ( string xPath, int theValue ) : |
Edit the value of a node
|
|
EditNode ( string xPath, int theValue, string attributeName, int attributeValue ) : |
Edit the value of a node
|
|
EditNode ( string xPath, int theValue, string attributeName, string attributeValue ) : |
Edit the value of a node
|
|
EditNode ( string xPath, string theValue ) : |
Edit the value of a node
|
|
EditNode ( string xPath, string theValue, string attributeName, int attributeValue ) : |
Edit the value of a node
|
|
EditNode ( string xPath, string theValue, string attributeName, string attributeValue ) : |
Edit the value of a node
|
|
GetAttribute ( string xPath, string attributeName ) : string |
Edit the value of an attribute
|
|
GetXmlnodeValue ( string xPath ) : string |
Return the value of a node, if the node does not exsist then string.Empty is returned
|
|
IsDate ( string value ) : bool | ||
NewXmlDocumentWithRoot ( string rootName ) : |
Creates a new UniverseXmlDocument with the specified rootName
|
|
UniverseXmlDocument ( ) : System |
Default Constructor
|
|
UniverseXmlDocument ( string xml ) : System |
Creates a UniverseXmlDocument and loads it with the xml
|
|
hasChildNodes2 ( |
Method | Description | |
---|---|---|
IsNull ( string val ) : bool |
public AddAttribute ( |
||
node | Node to add the attribute and attribute value to | |
attributeName | string | Name of the attribute to add |
attributeValue | string | Value of the attribute being added |
return | void |
public AddAttribute ( string xPath, string attributeName, string attributeValue ) : void | ||
xPath | string | XPath of the node to add the attribute and attribute value to |
attributeName | string | Name of the attribute to add |
attributeValue | string | Value of the attribute being added |
return | void |
public AddNode ( |
||
selectedNode | XmlNode where to add | |
nodeToAdd | XmlNode to add | |
return |
public AddNode ( string nodeName, string nodeValue ) : |
||
nodeName | string | Name of the node to add |
nodeValue | string | Value of node to add |
return |
public AddNode ( string xPath, string nodeName, string nodeValue ) : |
||
xPath | string | |
nodeName | string | |
nodeValue | string | |
return |
public AddNode ( string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
||
nodeName | string | |
nodeValue | string | |
attributeName | string | |
attributeValue | string | |
return |
public AddNode ( string xPath, string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
||
xPath | string | |
nodeName | string | |
nodeValue | string | |
attributeName | string | |
attributeValue | string | |
return |
public AddRootElement ( string nodeName ) : |
||
nodeName | string | |
return |
public AddXMLDoc ( |
||
XmlDoc | XmlDoc you want to add to this Xmldoc | |
xPathFrom | string | XPath to the node or nodes you want to move |
xPathTo | string | XPath to the node that you want to place the xml |
return |
public ConvertDateXML ( string xmlDate ) : string | ||
xmlDate | string | |
return | string |
public CreateNode ( string nodeName, int nodeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | int | Value of the node to create |
return |
public CreateNode ( string nodeName, int nodeValue, string attributeName, int attributeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | int | Value of the node to create |
attributeName | string | Attribute name in the node to create |
attributeValue | int | Attribute value in the node to create |
return |
public CreateNode ( string nodeName, int nodeValue, string attributeName, string attributeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | int | Value of the node to create |
attributeName | string | Attribute name in the node to create |
attributeValue | string | Attribute value in the node to create |
return |
public CreateNode ( string nodeName, string nodeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | string | Value of the node to create |
return |
public CreateNode ( string nodeName, string nodeValue, string attributeName, int attributeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | string | Value of the node to create |
attributeName | string | Attribute name in the node to create |
attributeValue | int | Attribute value in the node to create |
return |
public CreateNode ( string nodeName, string nodeValue, string attributeName, string attributeValue ) : |
||
nodeName | string | Name of the node to create |
nodeValue | string | Value of the node to create |
attributeName | string | Attribute name in the node to create |
attributeValue | string | Attribute value in the node to create |
return |
public DeleteNode ( |
||
selectedNode | Node to delete from document | |
return | bool |
public DeleteNode ( string xPath ) : bool | ||
xPath | string | XPath to the node to delete |
return | bool |
public DeleteNodes ( |
||
selectedNodes | Nodes to be deleted | |
return | bool |
public DeleteNodes ( string xPath ) : bool | ||
xPath | string | xPath to the nodes to be deleted |
return | bool |
public EditAttribute ( string xPath, string attributeName, string attributeValue ) : |
||
xPath | string | XPath to the node with the attribute to edit |
attributeName | string | Name of the attribute to edit |
attributeValue | string | New value of the attribute |
return |
public EditNode ( string xPath, int theValue ) : |
||
xPath | string | XPath to the node |
theValue | int | New Value of the node |
return |
public EditNode ( string xPath, int theValue, string attributeName, int attributeValue ) : |
||
xPath | string | XPath to the node |
theValue | int | New Value of the node |
attributeName | string | Attribute name in the node to edit |
attributeValue | int | Attribute value in the node to edit |
return |
public EditNode ( string xPath, int theValue, string attributeName, string attributeValue ) : |
||
xPath | string | XPath to the node |
theValue | int | New Value of the node |
attributeName | string | Attribute name in the node to edit |
attributeValue | string | Attribute value in the node to edit |
return |
public EditNode ( string xPath, string theValue ) : |
||
xPath | string | XPath to the node |
theValue | string | New Value of the node |
return |
public EditNode ( string xPath, string theValue, string attributeName, int attributeValue ) : |
||
xPath | string | XPath to the node |
theValue | string | New Value of the node |
attributeName | string | Attribute name in the node to edit |
attributeValue | int | Attribute value in the node to edit |
return |
public EditNode ( string xPath, string theValue, string attributeName, string attributeValue ) : |
||
xPath | string | XPath to the node |
theValue | string | New Value of the node |
attributeName | string | Attribute name in the node to edit |
attributeValue | string | Attribute value in the node to edit |
return |
public GetAttribute ( string xPath, string attributeName ) : string | ||
xPath | string | XPath to the node with the attribute to edit |
attributeName | string | Name of the attribute to edit |
return | string |
public GetXmlnodeValue ( string xPath ) : string | ||
xPath | string | XPath to the node you want the value of |
return | string |
public static NewXmlDocumentWithRoot ( string rootName ) : |
||
rootName | string | |
return |
public UniverseXmlDocument ( string xml ) : System | ||
xml | string | |
return | System |
public hasChildNodes2 ( |
||
selectedNode | ||
return | bool |