DTSXMLXPathOperation Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines what type of XPATH functionality is performed. This enumeration is used by the XPathOperation.
public enum class DTSXMLXPathOperation
public enum DTSXMLXPathOperation
type DTSXMLXPathOperation =
Public Enum DTSXMLXPathOperation
- Inheritance
-
DTSXMLXPathOperation
Fields
Name | Value | Description |
---|---|---|
Evaluation | 0 | This enumeration value is used when you need to take advantage of XPATH functions such as sum(). |
Values | 1 | This enumeration value is used when you want the inner text value of all the nodes concatenated into a string. It also offers support for the text() function. |
NodeList | 2 | This enumeration value is used when you want a node list returned that contains all of the nodes as an XML fragment. |