Méthode ImportConfigurationFile
Loads a configuration file associated with the package.
Espace de noms : Microsoft.SqlServer.Dts.Runtime
Assembly : Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)
Syntaxe
'Déclaration
Public Sub ImportConfigurationFile ( _
str As String _
)
'Utilisation
Dim instance As Package
Dim str As String
instance.ImportConfigurationFile(str)
public void ImportConfigurationFile(
string str
)
public:
void ImportConfigurationFile(
String^ str
)
member ImportConfigurationFile :
str:string -> unit
public function ImportConfigurationFile(
str : String
)
Paramètres
- str
Type : System. . :: . .String
The path and name of the file that contains the configuration.
Exemples
The following code example shows the ImportConfigurationFile method. The string parameter contains the path to the configuration.
package.ImportConfigurationFile(@"c:\myConfiguration.xml")
package.ImportConfigurationFile("c:\myConfiguration.xml")