UpgradePackageInfo Constructors

Definition

Initializes a new instance of the UpgradePackageInfo class.

Overloads

UpgradePackageInfo()

Initializes a new instance of the UpgradePackageInfo class.

UpgradePackageInfo(String, String, String)

Initializes a new instance of the UpgradePackageInfo class.

UpgradePackageInfo()

Initializes a new instance of the UpgradePackageInfo class.

public:
 UpgradePackageInfo();
public UpgradePackageInfo ();
Public Sub New ()

Applies to

UpgradePackageInfo(String, String, String)

Initializes a new instance of the UpgradePackageInfo class.

public:
 UpgradePackageInfo(System::String ^ name, System::String ^ newName, System::String ^ password);
public UpgradePackageInfo (string name, string newName, string password);
new Microsoft.SqlServer.Dts.Runtime.UpgradePackageInfo : string * string * string -> Microsoft.SqlServer.Dts.Runtime.UpgradePackageInfo
Public Sub New (name As String, newName As String, password As String)

Parameters

name
String

The original name and the full path of the Integration Services package to be upgraded.

newName
String

The new name and the full path of the package to be upgraded.

password
String

The password that is used to decrypt a package that is encrypted with a password.

Remarks

If the password parameter value is not specified, the PackagePassword property is used to set the package password.

Applies to