Click or drag to resize
RequestXmlCollection Methods

The RequestXmlCollection type exposes the following members.

Methods
  NameDescription
Public methodAddTextParameter
Add an API parameter of type Text
Public methodAppendChild
Adds the specified node to the end of the list of child nodes, of this node.
(Inherited from XmlNode.)
Public methodClone
Creates a duplicate of this node.
(Inherited from XmlNode.)
Public methodCloneNode
Creates a duplicate of this node.
(Inherited from XmlDocument.)
Public methodCreateAttribute(String)
Creates an XmlAttribute with the specified Name.
(Inherited from XmlDocument.)
Public methodCreateAttribute(String, String)
Creates an XmlAttribute with the specified qualified name and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateAttribute(String, String, String)
Creates an XmlAttribute with the specified Prefix, LocalName, and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateCDataSection
Creates an XmlCDataSection containing the specified data.
(Inherited from XmlDocument.)
Public methodCreateComment
Creates an XmlComment containing the specified data.
(Inherited from XmlDocument.)
Protected methodCreateDefaultAttribute
Creates a default attribute with the specified prefix, local name and namespace URI.
(Inherited from XmlDocument.)
Public methodCreateDocumentFragment (Inherited from XmlDocument.)
Public methodCreateDocumentType
Returns a new XmlDocumentType object.
(Inherited from XmlDocument.)
Public methodCreateElement(String)
Creates an element with the specified name.
(Inherited from XmlDocument.)
Public methodCreateElement(String, String)
Creates an XmlElement with the qualified name and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateElement(String, String, String)
Creates an element with the specified Prefix, LocalName, and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateEntityReference
Creates an XmlEntityReference with the specified name.
(Inherited from XmlDocument.)
Public methodCreateNavigator
Creates a new XPathNavigator object for navigating this document.
(Inherited from XmlDocument.)
Protected methodCreateNavigator(XmlNode)
Creates an XPathNavigator object for navigating this document positioned on the XmlNode specified.
(Inherited from XmlDocument.)
Public methodCreateNode(String, String, String)
Creates an XmlNode with the specified node type, Name, and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateNode(XmlNodeType, String, String)
Creates an XmlNode with the specified XmlNodeType, Name, and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateNode(XmlNodeType, String, String, String)
Creates a XmlNode with the specified XmlNodeType, Prefix, Name, and NamespaceURI.
(Inherited from XmlDocument.)
Public methodCreateProcessingInstruction
Creates an XmlProcessingInstruction with the specified name and data.
(Inherited from XmlDocument.)
Public methodCreateSignificantWhitespace
Creates an XmlSignificantWhitespace node.
(Inherited from XmlDocument.)
Public methodCreateTextNode
Creates an XmlText with the specified text.
(Inherited from XmlDocument.)
Public methodCreateWhitespace
Creates an XmlWhitespace node.
(Inherited from XmlDocument.)
Public methodCreateXmlDeclaration
Creates an XmlDeclaration node with the specified values.
(Inherited from XmlDocument.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetElementById
Gets the XmlElement with the specified ID.
(Inherited from XmlDocument.)
Public methodGetElementsByTagName(String)
Returns an XmlNodeList containing a list of all descendant elements that match the specified Name.
(Inherited from XmlDocument.)
Public methodGetElementsByTagName(String, String)
Returns an XmlNodeList containing a list of all descendant elements that match the specified LocalName and NamespaceURI.
(Inherited from XmlDocument.)
Public methodGetEnumerator
Get an enumerator that iterates through the child nodes in the current node.
(Inherited from XmlNode.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetNamespaceOfPrefix
Looks up the closest xmlns declaration for the given prefix that is in scope for the current node and returns the namespace URI in the declaration.
(Inherited from XmlNode.)
Public methodGetPrefixOfNamespace
Looks up the closest xmlns declaration for the given namespace URI that is in scope for the current node and returns the prefix defined in that declaration.
(Inherited from XmlNode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodImportNode
Imports a node from another document to the current document.
(Inherited from XmlDocument.)
Public methodInsertAfter
Inserts the specified node immediately after the specified reference node.
(Inherited from XmlNode.)
Public methodInsertBefore
Inserts the specified node immediately before the specified reference node.
(Inherited from XmlNode.)
Public methodLoad(String)
Loads the XML document from the specified URL.
(Inherited from XmlDocument.)
Public methodLoad(Stream)
Loads the XML document from the specified stream.
(Inherited from XmlDocument.)
Public methodLoad(TextReader)
Loads the XML document from the specified TextReader.
(Inherited from XmlDocument.)
Public methodLoad(XmlReader)
Loads the XML document from the specified XmlReader.
(Inherited from XmlDocument.)
Public methodLoadXml
Loads the XML document from the specified string.
(Inherited from XmlDocument.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNormalize
Puts all XmlText nodes in the full depth of the sub-tree underneath this XmlNode into a "normal" form where only markup (that is, tags, comments, processing instructions, CDATA sections, and entity references) separates XmlText nodes, that is, there are no adjacent XmlText nodes.
(Inherited from XmlNode.)
Public methodPrependChild
Adds the specified node to the beginning of the list of child nodes for this node.
(Inherited from XmlNode.)
Public methodReadNode
Creates an XmlNode object based on the information in the XmlReader. The reader must be positioned on a node or attribute.
(Inherited from XmlDocument.)
Public methodRemoveAll
Removes all the child nodes and/or attributes of the current node.
(Inherited from XmlNode.)
Public methodRemoveChild
Removes specified child node.
(Inherited from XmlNode.)
Public methodReplaceChild
Replaces the child node oldChild with newChild node.
(Inherited from XmlNode.)
Public methodSave(String)
Saves the XML document to the specified file. If the specified file exists, this method overwrites it.
(Inherited from XmlDocument.)
Public methodSave(Stream)
Saves the XML document to the specified stream.
(Inherited from XmlDocument.)
Public methodSave(TextWriter)
Saves the XML document to the specified TextWriter.
(Inherited from XmlDocument.)
Public methodSave(XmlWriter)
Saves the XML document to the specified XmlWriter.
(Inherited from XmlDocument.)
Public methodSelectNodes(String)
Selects a list of nodes matching the XPath expression.
(Inherited from XmlNode.)
Public methodSelectNodes(String, XmlNamespaceManager)
Selects a list of nodes matching the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied XmlNamespaceManager.
(Inherited from XmlNode.)
Public methodSelectSingleNode(String)
Selects the first XmlNode that matches the XPath expression.
(Inherited from XmlNode.)
Public methodSelectSingleNode(String, XmlNamespaceManager)
Selects the first XmlNode that matches the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied XmlNamespaceManager.
(Inherited from XmlNode.)
Public methodSupports
Tests if the DOM implementation implements a specific feature.
(Inherited from XmlNode.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodValidate(ValidationEventHandler)
Validates the XmlDocument against the XML Schema Definition Language (XSD) schemas contained in the Schemas property.
(Inherited from XmlDocument.)
Public methodValidate(ValidationEventHandler, XmlNode)
Validates the XmlNode object specified against the XML Schema Definition Language (XSD) schemas in the Schemas property.
(Inherited from XmlDocument.)
Public methodWriteContentTo
Saves all the children of the XmlDocument node to the specified XmlWriter.
(Inherited from XmlDocument.)
Public methodWriteTo
Saves the XmlDocument node to the specified XmlWriter.
(Inherited from XmlDocument.)
Top
Extension Methods
  NameDescription
Public Extension MethodCopyRecursive
recursively copies object properties to destination.
(Defined by Utility.)
Top
See Also