Bagikan melalui


ApplicationClass.LoadPackage Method

This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.

Loads a package from the file system, and specifies the threading model.

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

Syntax

'Declaration
Public Overridable Function LoadPackage ( _
    FileName As String, _
    loadNeutral As Boolean, _
    pEvents As IDTSEvents100 _
) As IDTSPackage100
'Usage
Dim instance As ApplicationClass 
Dim FileName As String 
Dim loadNeutral As Boolean 
Dim pEvents As IDTSEvents100 
Dim returnValue As IDTSPackage100 

returnValue = instance.LoadPackage(FileName, _
    loadNeutral, pEvents)
public virtual IDTSPackage100 LoadPackage(
    string FileName,
    bool loadNeutral,
    IDTSEvents100 pEvents
)
public:
virtual IDTSPackage100^ LoadPackage(
    [InAttribute] String^ FileName, 
    [InAttribute] bool loadNeutral, 
    [InAttribute] IDTSEvents100^ pEvents
)
abstract LoadPackage : 
        FileName:string * 
        loadNeutral:bool * 
        pEvents:IDTSEvents100 -> IDTSPackage100  
override LoadPackage : 
        FileName:string * 
        loadNeutral:bool * 
        pEvents:IDTSEvents100 -> IDTSPackage100
public function LoadPackage(
    FileName : String, 
    loadNeutral : boolean, 
    pEvents : IDTSEvents100
) : IDTSPackage100

Parameters

  • FileName
    Type: System.String
    The name of the file that contains the package to load.
  • loadNeutral
    Type: System.Boolean
    true to load the package as neutral threaded. false to load the package as apartment threaded.

Return Value

Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSPackage100
The package that was loaded.

Implements

IDTSApplication100.LoadPackage(String, Boolean, IDTSEvents100)

See Also

Reference

ApplicationClass Class

Microsoft.SqlServer.Dts.Runtime.Wrapper Namespace