Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Microsoft SQL Server/110/DTS/Tasks/en/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <doc> <assembly> <name>Microsoft.SqlServer.XMLTask</name> </assembly> <members> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffAlgorithm"> <summary>Specifies which algorithm to use when comparing XML documents.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffAlgorithm.Auto"> <summary>Default. Chooses the comparison algorithm for you depending on the size and assumed number of changes in the compared documents.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffAlgorithm.Fast"> <summary>Compares the two XML documents by traversing the XML tree and comparing it node-by-node. This algorithm is very fast but may produce less precise results. For example, it may detect both an add and remove operation on a node instead of a move operation.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffAlgorithm.Precise"> <summary>Compares files based on an algorithm for finding the editing distance between trees, also known as Zhang-Shasha algorithm. This algorithm gives very precise results but it may be very slow on large XML documents with many changes.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions"> <summary>When the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask" /> has an <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OperationType" /> set to <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Diff" />, then this enumeration is used to sets the options that affect the behavior of the comparison, as well as the resulting XDL DiffGram. The enumerations used will determine what items are included for consideration during the comparison.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.None"> <summary>Specifies that that none of the options found in the enumeration are used.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreChildOrder"> <summary>Specifies that the order of child nodes of each element is ignored. When this option is selected, two nodes with the same value that differ only by their position among sibling child nodes are treated as the same nodes.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreComments"> <summary>Specifies that Comment nodes are not compared.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnorePI"> <summary>Specifies that the namespace URIs of the element and attribute names are not compared. This option also implies that the name prefixes are ignored. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreWhitespace"> <summary>Specifies that significant white spaces are not compared and that all text nodes are normalized by discarding any leading and trailing white space characters (#x9, #x10, #x13, #x20) and replacing sequences of white space characters with a single space (#x20) character.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreNamespaces"> <summary>Specifies that the namespace Uniform Resource Identifiers (URIs) of the element and attribute names are not compared. This option also implies that the name prefixes are ignored. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnorePrefixes"> <summary>Specifies that the prefixes of element and attribute names are not compared. When this option is selected, two names that have the same local name and namespace URI, but have a different prefix, are treated as the same names.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreXmlDecl"> <summary>Specifies that the XML declaration is not compared.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions.IgnoreDtd"> <summary>Specifies that document type declaration (DTD) is not compared.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation"> <summary>Specifies the operations used when working with XML documents. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Validate"> <summary>Validates the XML document against a document type definition (DTD) or XML Schema definition (XSD).</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.XSLT"> <summary>Performs XSL transformations on XML documents.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.XPATH"> <summary>Performs XPath queries and evaluations.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Merge"> <summary>Merges two XML documents. By using the source XML document as a base document, it merges a second document into the base document. The operation can specify a merge location in the document.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Diff"> <summary>Compares two XML documents. By using the source XML document as a base document, the Diff operation compares it to another XML document, detects the differences, and then writes the differences to an XML DiffGram document. This operation includes properties for customizing the comparison. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Patch"> <summary>Applies the output from the Diff operation (a DiffGram document) to an XML document to create a new parent document that can include content from the DiffGram document.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo"> <summary>Describes the location where the results are saved. This enumeration is used to set the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DestinationType" /> property. Depending on value, the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Destination" /> property must be compatible. For example, if the destination type is set to <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo.Variable" />, then the destination property must provide a variable to save the results into. When the destination type is set to <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo.FileConnection" />, then the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Destination" /> property must provide a file connection manager. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo.FileConnection"> <summary>Specifies that results are saved to the file listed in the connection manager string.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo.Variable"> <summary>Specifies that the results are saved in a variable.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType"> <summary>Describes the location of the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SourceType" />, the source type of the XPath string in <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathStringSourceType" />, and the type of the second operand in <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SecondOperandType" />. Depending on what the type is used, the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Source" />, <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathStringSource" />, and <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SecondOperand" /> properties must be compatible. For example, if the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SourceType" /> is set to <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType.FileConnection" />, then the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Source" /> must contain a connection manager. If the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SourceType" /> is <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType.Variable" />, then the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Source" /> must point to the variable to use.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType.FileConnection"> <summary>Specifies that the XML document is saved in a file. The task interacts with the connection manager to retrieve XML documents from the files. If you are writing a user interface for this task, operations that support file connection manager retrieval should also offer a New connection button, which allows users to create a new connection while editing the task.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType.Variable"> <summary>Specifies that the XML document is saved in a variable.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType.DirectInput"> <summary>Specifies that the XML document is entered in plain text, directly into an area in the task user interface. This option is used only when a user interface for the task is provided.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLValidationType"> <summary>Specifies the type of validation that the operation uses. This enumeration is only used when the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OperationType" /> is <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Validate" />. The default is an XML Schema, which is a value of XSD.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLValidationType.DTD"> <summary>Specifies that the validating parser is to retrieve the document type definition (DTD) and ensure that the document conforms to the grammar that the DTD describes.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLValidationType.XSD"> <summary>Default. Specifies that the document is validated by using the XML Schema validation services.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation"> <summary>Determines what type of XPATH functionality is performed. This enumeration is used by the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathOperation" />. </summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation.Evaluation"> <summary>This enumeration value is used when you need to take advantage of XPATH functions such as sum().</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation.Values"> <summary>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.</summary> </member> <member name="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation.NodeList"> <summary>This enumeration value is used when you want a node list returned that contains all of the nodes as an XML fragment.</summary> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask"> <summary>Represents the DTS XML task.</summary> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.Destination"> <summary>Gets or sets the task destination.</summary> <returns>The task destination.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.DestinationType"> <summary>Gets or sets the destination type.</summary> <returns>The destination type.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.DiffAlgorithm"> <summary>Gets or sets the comparison algorithm.</summary> <returns>The comparison algorithm.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.DiffGramDestination"> <summary>Gets or sets the name of the connection or the variable to which the XML task saves the DiffGram document.</summary> <returns>The name of the connection or variable to which the XML task saves the DiffGram document.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.DiffGramDestinationType"> <summary>Gets or sets a value that indicates the type of destination to which the XML task saves the DiffGram document.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo" /> enumeration that indicates the type of destination to which the XML task saves the DiffGram document.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.DiffOptions"> <summary>Gets or sets a value that indicates the options the operation uses when comparing documents.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions" /> enumeration that indicates the options the operation uses when comparing documents.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.FailOnDifference"> <summary>Gets or sets a value that indicates whether the task fails if the XML document fails to validate according to the validation schema.</summary> <returns>true if the task fails if the XML document fails to validate according to the validation schema; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.FailOnValidationFail"> <summary>Gets or sets a value that indicates whether the operation fails when a validation fails.</summary> <returns>true if the operation fails when a validation fails; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.NodeList"> <summary>Gets or sets a collection of nodes that the XPath operation produces.</summary> <returns>An <see cref="T:System.Collections.ArrayList" /> class that contains a collection of nodes that the XPath operation produces.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.OperationType"> <summary>Gets or sets the type of the operation that the task performs.</summary> <returns>The type of the operation that the task performs.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.OverwriteDestination"> <summary>Gets or sets a value that indicates whether the operation overwrites existing destination files.</summary> <returns>true if the operation overwrites existing destination files; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.PutResultInOneNode"> <summary>Gets or sets a value that indicates whether the operation places the result in one node.</summary> <returns>true if the operation places the result in one node; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.SaveDiffGram"> <summary>Gets or sets a value that indicates whether the comparison result, a DiffGram document, is saved.</summary> <returns>true if the comparison result, a DiffGram document, is saved; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.SaveOperationResult"> <summary>Gets or sets a value that indicates whether the XML task saves the Diff operation output.</summary> <returns>true if the XML task saves the Diff operation output; otherwise, false.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.SecondOperand"> <summary>Gets or sets the name of the connection, the variable, or the user-provided text that is the second operand.</summary> <returns>The name of the connection, the variable, or the user-provided text that is the second operand.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.SecondOperandType"> <summary>Gets or sets the type of source that contains the data in the second operand.</summary> <returns>The type of source that contains that data in the second operand.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.Source"> <summary>Gets or sets the name of the connection, the variable, or the user-provided text that is the source the operation uses.</summary> <returns>The name of the connection, the variable, or the user-provided text that is the source the operation uses.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.SourceType"> <summary>Gets or sets the type of source that contains the XML document the operation uses.</summary> <returns>The type of source that contains the XML document the operation uses.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.ValidationType"> <summary>Gets or sets the type of validation the operation uses.</summary> <returns>The type of validation the operation uses.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.XPathOperation"> <summary>Gets or sets the XPath operation to perform.</summary> <returns>The XPath operation to perform.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.XPathStringSource"> <summary>Gets or sets the source of the XPath expression.</summary> <returns>The source of the XPath expression.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.IDTSXMLTask.XPathStringSourceType"> <summary>Gets or sets the type of the source that contains the XPath expression.</summary> <returns>The type of the source that contains the XPath expression.</returns> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.XmlDiffPerf"> <summary>Represents a XmlDiffPerf class.</summary> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XmlDiffPerf.#ctor"> <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.XmlDiffPerf" /> class.</summary> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XmlDiffPerf.Clean"> <summary>Cleans the current instance.</summary> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XmlDiffPerf.TotalTime"> <summary>Gets the total time of the performance.</summary> <returns>The total time of the performance.</returns> </member> <member name="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask"> <summary>Contains the members used to run several XML tasks, depending on the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OperationType" /> property, which is a value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation" /> enumeration. This class cannot be inherited. </summary> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.#ctor"> <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask" /> class. </summary> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.AcceptBreakpointManager(Microsoft.SqlServer.Dts.Runtime.BreakpointManager)"> <summary>Passes a <see cref="T:Microsoft.SqlServer.Dts.Runtime.BreakpointManager" /> to a task. The task will use the breakpoint manager to create, remove, and check the status of breakpoints. This method is called by the runtime and is not used in code.</summary> <param name="manager">The breakpoint manager specific for this task.</param> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DebugMode"> <summary>A Boolean that indicates if a task should check if any breakpoints are enabled.</summary> <returns>true indicates that the task checks for enabled breakpoints.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Destination"> <summary>Gets or sets the name of the connection or the variable to which the XML task saves the results of the operation. </summary> <returns>A String that contains the name of the connection or variable to which the XML task saves the results of the operation.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DestinationType"> <summary>Gets or sets a <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo" /> enumeration value that indicates the type of destination to which the XML task saves the XML document.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo" /> enumeration that indicates the type of destination to which the XML task saves the XML document.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DiffAlgorithm"> <summary>Gets or sets the comparison algorithm to use when the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OperationType" /> is <see cref="F:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation.Diff" />.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffAlgorithm" /> enumeration that indicates the comparison algorithm.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DiffGramDestination"> <summary>Gets or sets the name of the connection or the variable to which the XML task saves the DiffGram document. </summary> <returns>A String that indicates the name of the connection or variable to which the XML task saves the DiffGram document.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DiffGramDestinationType"> <summary>Gets or sets a value that indicates the type of destination to which the XML task saves the DiffGram document.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSaveResultTo" /> enumeration that indicates the type of destination to which the XML task saves the DiffGram document.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.DiffOptions"> <summary>Gets or sets a value that indicates the options the operation uses when comparing documents. </summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions" /> enumeration that indicates the options the operation uses when comparing documents.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Execute(Microsoft.SqlServer.Dts.Runtime.Connections,Microsoft.SqlServer.Dts.Runtime.VariableDispenser,Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents,Microsoft.SqlServer.Dts.Runtime.IDTSLogging,System.Object)"> <summary>Runs the task.</summary> <returns>A <see cref="T:Microsoft.SqlServer.Dts.Runtime.DTSExecResult" /> that indicates the outcome of the execution. </returns> <param name="connections">A <see cref="T:Microsoft.SqlServer.Dts.Runtime.Connections" /> collection for the task.</param> <param name="variableDispenser">A <see cref="T:Microsoft.SqlServer.Dts.Runtime.VariableDispenser" /> object for locking variables.</param> <param name="events">An <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents" /> interface to raise events. </param> <param name="log">An <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSLogging" /> interface.</param> <param name="transaction">The transaction object that the task is part of. This value can be null.</param> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.ExecutionValue"> <summary>Returns the result of the task execution.</summary> <returns>A user-defined object.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.FailOnDifference"> <summary>Gets or sets a Boolean that indicates whether the task fails if the XML document fails to validate according to the validation schema.</summary> <returns>true if the task fails if the XML document fails to validate according to the validation schema; false if XML validation does not affect task success.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.FailOnValidationFail"> <summary>Gets or sets a Boolean that indicates whether the operation fails when a validation fails.</summary> <returns>A Boolean that indicates whether the operation fails when a validation fails.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.InitializeTask(Microsoft.SqlServer.Dts.Runtime.Connections,Microsoft.SqlServer.Dts.Runtime.VariableDispenser,Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents,Microsoft.SqlServer.Dts.Runtime.IDTSLogging,Microsoft.SqlServer.Dts.Runtime.EventInfos,Microsoft.SqlServer.Dts.Runtime.LogEntryInfos,Microsoft.SqlServer.Dts.Runtime.ObjectReferenceTracker)"> <summary>Initializes the properties associated with this task. This method is called by the runtime and is not used in code.</summary> <param name="connections">A collection of <see cref="T:Microsoft.SqlServer.Dts.Runtime.Connections" /> used by the task.</param> <param name="variableDispenser">A <see cref="T:Microsoft.SqlServer.Dts.Runtime.VariableDispenser" /> object for locking variables.</param> <param name="events">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents" /> interface. </param> <param name="log">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSLogging" /> interface.</param> <param name="eventInfos">A collection that contains the events to be raised during execution of the task.</param> <param name="logEntryInfos">A collection of log entries. </param> <param name="refTracker">An object reference tracker.</param> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.LoadFromXML(System.Xml.XmlElement,Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents)"> <summary>This method is not callable by your application code. To load a package saved as .xml, use the <see cref="M:Microsoft.SqlServer.Dts.Runtime.Application.LoadPackage(System.String,Microsoft.SqlServer.Dts.Runtime.IDTSEvents)" /> method.</summary> <param name="rootNode">The XmlElement that contains the information to load.</param> <param name="events">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents" /> interface for raising events during persistence.</param> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.NodeList"> <summary>Gets an ArrayList class that contains a collection of nodes that the XPath operation produces.</summary> <returns>An ArrayList class that contains a collection of nodes that the XPath operation produces.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OperationType"> <summary>Gets or sets a <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation" /> enumeration value that indicates the type of the operation that the task performs, such as validation or merging.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLOperation" /> enumeration that indicates the type of the operation that the task performs.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.OverwriteDestination"> <summary>Gets or sets a Boolean that indicates whether the operation overwrites existing destination files.</summary> <returns>true if the operation overwrites existing destination files.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.PutResultInOneNode"> <summary>Gets or sets a Boolean that indicates whether the operation places the result in one node.</summary> <returns>true if the operation places the result in one node.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.ResumeExecution"> <summary>Resumes execution of the task after pausing. The task or container is resumed by the runtime engine. </summary> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SaveDiffGram"> <summary>Gets or sets a Boolean that indicates whether the comparison result, a DiffGram document, is saved.</summary> <returns>true if the comparison result, a DiffGram document, is saved.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SaveOperationResult"> <summary>Gets or sets a Boolean that indicates whether the XML task saves the Diff operation output. </summary> <returns>true if the XML task saves the Diff operation output.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SaveToXML(System.Xml.XmlDocument,Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents)"> <summary>This method is not callable by your application code. To save a package as .xml, use the <see cref="M:Microsoft.SqlServer.Dts.Runtime.Application.SaveToXml(System.String,Microsoft.SqlServer.Dts.Runtime.Package,Microsoft.SqlServer.Dts.Runtime.IDTSEvents)" /> method.</summary> <param name="doc">The XML document to which to save the information.</param> <param name="events">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents" /> interface for firing events (errors, warnings, and so on) during persistence.</param> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SecondOperand"> <summary>Gets or sets the name of the connection, the variable, or the user-provided text that is the second operand in an operation that uses two operands. The second operand may be an XML document, a DiffGram, an XSLT, an XPath, or a validating document, depending on the operation.</summary> <returns>A String that contains the name of the connection, the variable, or the user-provided text that is the second operand.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SecondOperandType"> <summary>Gets or sets a value that indicates the type of source that contains the XML document, the DiffGram, the XSLT, the XPath, or the validating document, found in the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SecondOperand" />.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType" /> enumeration that indicates the type of source that contains the data in the second operand.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Source"> <summary>Gets or sets the name of the connection, the variable, or the user-provided text that is the source the operation uses.</summary> <returns>A String that contains the name of the connection, the variable, or the user-provided text that is the source the operation uses.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SourceType"> <summary>Gets or sets a value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType" /> enumeration that indicates the type of source that contains the XML document the operation uses.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType" /> enumeration that indicates the type of source that contains the XML document the operation uses.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SuspendExecution"> <summary>Indicates that the executable needs to suspend. This method is called by the runtime engine. </summary> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.SuspendRequired"> <summary>Gets or sets a Boolean that indicates if tasks should suspend when they encounter a breakpoint. This value is set by the runtime engine for tasks and containers when a breakpoint is encountered.</summary> <returns>true if that the task suspends.</returns> </member> <member name="M:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.Validate(Microsoft.SqlServer.Dts.Runtime.Connections,Microsoft.SqlServer.Dts.Runtime.VariableDispenser,Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents,Microsoft.SqlServer.Dts.Runtime.IDTSLogging)"> <summary>Verifies that the component is properly configured.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Runtime.DTSExecResult" /> enumeration.</returns> <param name="connections">A collection of <see cref="T:Microsoft.SqlServer.Dts.Runtime.Connections" /> used by the task.</param> <param name="variableDispenser">A <see cref="T:Microsoft.SqlServer.Dts.Runtime.VariableDispenser" /> object for locking variables.</param> <param name="events">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents" /> interface.</param> <param name="log">An object that implements the <see cref="T:Microsoft.SqlServer.Dts.Runtime.IDTSLogging" /> interface.</param> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.ValidationType"> <summary>Gets or sets a <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLValidationType" /> enumeration value that indicates the type of validation the operation uses.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLValidationType" /> enumeration that indicates the type of validation the operation uses.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathOperation"> <summary>Gets or sets a <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation" /> enumeration value that indicates the XPath operation to perform.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLXPathOperation" /> enumeration that indicates the XPath operation to perform.</returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathStringSource"> <summary>Gets or sets the source of the XPath expression.</summary> <returns>A String that contains the source of the XPath expression. </returns> </member> <member name="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathStringSourceType"> <summary>Gets or sets a value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType" /> enumeration that indicates the type of the source that contains the XPath expression in the <see cref="P:Microsoft.SqlServer.Dts.Tasks.XMLTask.XMLTask.XPathStringSource" /> property.</summary> <returns>A value from the <see cref="T:Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLSourceType" /> enumeration that indicates the type of the source that contains the XPath expression.</returns> </member> </members> </doc>