IDTSComponentPersist.LoadFromXML(XmlElement, IDTSInfoEvents) Method
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.
Loads component information from XML.
public:
void LoadFromXML(System::Xml::XmlElement ^ node, Microsoft::SqlServer::Dts::Runtime::IDTSInfoEvents ^ infoEvents);
public void LoadFromXML (System.Xml.XmlElement node, Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents infoEvents);
abstract member LoadFromXML : System.Xml.XmlElement * Microsoft.SqlServer.Dts.Runtime.IDTSInfoEvents -> unit
Public Sub LoadFromXML (node As XmlElement, infoEvents As IDTSInfoEvents)
Parameters
- node
- XmlElement
The node that contains the information to be loaded.
- infoEvents
- IDTSInfoEvents
An object that implements the IDTSInfoEvents interface for raising events (errors, warnings, and so on) during persistence.
Remarks
This method is available because you inherit this interface and override this method when you are creating custom objects. This method is intended for inheritance only and should not be called from code. If you want to load a package, use one of the following methods:
Microsoft.SqlServer.Dts.Runtime.Application.LoadFromSqlServer
Microsoft.SqlServer.Dts.Runtime.Application.LoadFromSqlServer2
Microsoft.SqlServer.Dts.Runtime.Application.LoadFromDtsServer
If you are creating a custom object and need information about how to write your own LoadFromXML
method, see Extending Packages with Custom Objects.