Application::LoadPackage Method (String^, IDTSEvents^)

 

Loads a Package from the file system.

Namespace:   Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

public:
Package^ LoadPackage(
	String^ fileName,
	IDTSEvents^ events
)

Parameters

fileName
Type: System::String^

The name of the file that contains the package to load.

events
Type: Microsoft.SqlServer.Dts.Runtime::IDTSEvents^

An IDTSEvents interface.

Return Value

Type: Microsoft.SqlServer.Dts.Runtime::Package^

The package that was loaded.

The following code example loads a package from the file system, and then returns several properties for the package.

No code example is currently available or this language may not be supported.

Sample Output:

Number of configurations = 0

VersionGUID = Microsoft.SqlServer.Dts.Runtime.DtsProperty

ProtectionLevel = EncryptSensitiveWithUserKey

Return to top
Show: