共用方式為


ApplicationClass.LoadPackage 方法

此 API 支援 SQL Server 2012 基礎結構,但無法直接從您的程式碼使用。

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

命名空間:  Microsoft.SqlServer.Dts.Runtime.Wrapper
組件:  Microsoft.SqlServer.DTSRuntimeWrap (在 Microsoft.SqlServer.DTSRuntimeWrap.dll 中)

語法

'宣告
Public Overridable Function LoadPackage ( _
    FileName As String, _
    loadNeutral As Boolean, _
    pEvents As IDTSEvents100 _
) As IDTSPackage100
'用途
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

參數

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

傳回值

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

實作

IDTSApplication100.LoadPackage(String, Boolean, IDTSEvents100)

請參閱

參考

ApplicationClass 類別

Microsoft.SqlServer.Dts.Runtime.Wrapper 命名空間