IDTSComponentPersist.LoadFromXML(XmlElement, IDTSInfoEvents) Method

Definition

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:

If you are creating a custom object and need information about how to write your own LoadFromXML method, see Extending Packages with Custom Objects.

Applies to