Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets or sets a value that indicates the options the operation uses when comparing documents.
Namespace: Microsoft.SqlServer.Dts.Tasks.XMLTask
Assembly: Microsoft.SqlServer.XMLTask (in Microsoft.SqlServer.XMLTask.dll)
Syntax
'Declaration
Public Property DiffOptions As DTSXMLDiffOptions
Get
Set
'Usage
Dim instance As XMLTask
Dim value As DTSXMLDiffOptions
value = instance.DiffOptions
instance.DiffOptions = value
public DTSXMLDiffOptions DiffOptions { get; set; }
public:
virtual property DTSXMLDiffOptions DiffOptions {
DTSXMLDiffOptions get () sealed;
void set (DTSXMLDiffOptions value) sealed;
}
abstract DiffOptions : DTSXMLDiffOptions with get, set
override DiffOptions : DTSXMLDiffOptions with get, set
final function get DiffOptions () : DTSXMLDiffOptions
final function set DiffOptions (value : DTSXMLDiffOptions)
Eigenschaftswert
Typ: Microsoft.SqlServer.Dts.Tasks.XMLTask.DTSXMLDiffOptions
A value from the DTSXMLDiffOptions enumeration that indicates the options the operation uses when comparing documents.
Implementiert
Hinweise
This property is used only when the OperationType is set to Diff.
Beispiele
The following code example assumes that an XMLTask has been created as myTask, with an OperationType set to Diff. It uses the DTSXMLDiffOptions enumeration to set the DiffOptions value.
myTask.OperationType = DTSXMLOperation.Diff;
myTask.DiffAlgorithm = DTSXMLDiffAlgorithm.Fast;
myTask.DiffOptions = DTSXMLDiffOptions.IgnoreDtd;
myTask.OperationType = DTSXMLOperation.Diff
myTask.DiffAlgorithm = DTSXMLDiffAlgorithm.Fast
myTask.DiffOptions = DTSXMLDiffOptions.IgnoreDtd