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.
Saves the definition of the task, in XML format, into the XML definition of the package.
Namespace: Microsoft.SqlServer.Dts.Tasks.DataProfilingTask
Assembly: Microsoft.SqlServer.DataProfilingTask (in Microsoft.SqlServer.DataProfilingTask.dll)
Syntax
'Declaration
Public Sub SaveToXML ( _
doc As XmlDocument, _
infoEvents As IDTSInfoEvents _
)
'Usage
Dim instance As DataProfilingTask
Dim doc As XmlDocument
Dim infoEvents As IDTSInfoEvents
instance.SaveToXML(doc, infoEvents)
public void SaveToXML(
XmlDocument doc,
IDTSInfoEvents infoEvents
)
public:
virtual void SaveToXML(
XmlDocument^ doc,
IDTSInfoEvents^ infoEvents
) sealed
abstract SaveToXML :
doc:XmlDocument *
infoEvents:IDTSInfoEvents -> unit
override SaveToXML :
doc:XmlDocument *
infoEvents:IDTSInfoEvents -> unit
public final function SaveToXML(
doc : XmlDocument,
infoEvents : IDTSInfoEvents
)
Parameter
- doc
Typ: System.Xml.XmlDocument
The XmlNode that contains the information to be saved.
- infoEvents
Typ: Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents
An object that implements the IDTSInfoEvents interface, through which the method can raise events to the package.
Implementiert
IDTSComponentPersist.SaveToXML(XmlDocument, IDTSInfoEvents)
Hinweise
For more information about the inherited SaveToXML method, see SaveToXML.