DataProfilingTask.SaveToXML 方法
Saves the definition of the task, in XML format, into the XML definition of the package.
命名空间: Microsoft.SqlServer.Dts.Tasks.DataProfilingTask
程序集: Microsoft.SqlServer.DataProfilingTask(在 Microsoft.SqlServer.DataProfilingTask.dll 中)
语法
声明
Public Sub SaveToXML ( _
doc As XmlDocument, _
infoEvents As IDTSInfoEvents _
)
用法
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
)
参数
- doc
类型:System.Xml.XmlDocument
The XmlNode that contains the information to be saved.
- infoEvents
类型:Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents
An object that implements the IDTSInfoEvents interface, through which the method can raise events to the package.
实现
IDTSComponentPersist.SaveToXML(XmlDocument, IDTSInfoEvents)
注释
For more information about the inherited SaveToXML method, see SaveToXML.