Konstruktor DtsContainer
Inicjuje nowe wystąpienie DtsContainer klasy
Ten interfejs API nie jest zgodny ze specyfikacją CLS. Zgodna ze specyfikacją CLS alternatywa to .
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
<CLSCompliantAttribute(False)> _
Protected Sub New ( _
DtsContainer As IDTSContainer100 _
)
'Użycie
Dim DtsContainer As IDTSContainer100
Dim instance As New DtsContainer(DtsContainer)
[CLSCompliantAttribute(false)]
protected DtsContainer(
IDTSContainer100 DtsContainer
)
[CLSCompliantAttribute(false)]
protected:
DtsContainer(
IDTSContainer100^ DtsContainer
)
[<CLSCompliantAttribute(false)>]
new :
DtsContainer:IDTSContainer100 -> DtsContainer
protected function DtsContainer(
DtsContainer : IDTSContainer100
)
Parametry
- DtsContainer
Typ: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSContainer100
W celu utworzenia kontener.
Uwagi
Ten konstruktor jest wywoływana przez konstruktorów klas pochodnych zainicjować Państwo w tego typu.
Przykłady
Package Klasy implementuje DtsContainer poprzez dziedziczenie jego EventsProvider.Aby utworzyć klasę, która dziedziczy DtsContainer, po prostu utworzyć wystąpienie klasy w zwykły sposób.Poniższy przykład kodu tworzy nowy Package klasy
using System;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.Samples.SqlServer.Dts
{
public static void Main(string []args)
{
Package p = new Package();
//
// Access methods and properties of the DtsContainer
// here through the Package object.
}
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Microsoft.Samples.SqlServer.Dts
Public Shared Sub Main(ByValstring()args)
Dim p As Package = New Package()
'
' Access methods and properties of the DtsContainer
' here through the Package object.
End Sub
End Namespace