IDTSPersist.LoadFromXML(XmlNode, IDTSEvents) Method

Definition

Loads data stored in XML format.

public:
 void LoadFromXML(System::Xml::XmlNode ^ node, Microsoft::SqlServer::Dts::Runtime::IDTSEvents ^ events);
public void LoadFromXML (System.Xml.XmlNode node, Microsoft.SqlServer.Dts.Runtime.IDTSEvents events);
abstract member LoadFromXML : System.Xml.XmlNode * Microsoft.SqlServer.Dts.Runtime.IDTSEvents -> unit
Public Sub LoadFromXML (node As XmlNode, events As IDTSEvents)

Parameters

node
XmlNode

The node that contains the data to be loaded.

events
IDTSEvents

An object that implements the IDTSEvents 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