Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Opens a package from the file system
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntax
'Declaration
Public Overridable Function OpenProject ( _
bstrProjectFileName As String, _
pEvents As IDTSEvents100 _
) As IDTSProject100
'Usage
Dim instance As ApplicationClass
Dim bstrProjectFileName As String
Dim pEvents As IDTSEvents100
Dim returnValue As IDTSProject100
returnValue = instance.OpenProject(bstrProjectFileName, _
pEvents)
public virtual IDTSProject100 OpenProject(
string bstrProjectFileName,
IDTSEvents100 pEvents
)
public:
virtual IDTSProject100^ OpenProject(
[InAttribute] String^ bstrProjectFileName,
[InAttribute] IDTSEvents100^ pEvents
)
abstract OpenProject :
bstrProjectFileName:string *
pEvents:IDTSEvents100 -> IDTSProject100
override OpenProject :
bstrProjectFileName:string *
pEvents:IDTSEvents100 -> IDTSProject100
public function OpenProject(
bstrProjectFileName : String,
pEvents : IDTSEvents100
) : IDTSProject100
Parameters
- bstrProjectFileName
Type: System.String
The project file name.
- pEvents
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSEvents100
An IDTSEvents interface.
Return Value
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSProject100
The opened project.
Implements
IDTSApplication100.OpenProject(String, IDTSEvents100)