IDTSPersist.LoadFromXML(XmlNode, IDTSEvents) 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 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:
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.