Compartir a través de


ForEachEnumeratorInfo.CreateNew Método

Creates a new ForEachEnumeratorHost for any ForEach enumerator.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public Function CreateNew As ForEachEnumeratorHost
'Uso
Dim instance As ForEachEnumeratorInfo 
Dim returnValue As ForEachEnumeratorHost 

returnValue = instance.CreateNew()
public ForEachEnumeratorHost CreateNew()
public:
ForEachEnumeratorHost^ CreateNew()
member CreateNew : unit -> ForEachEnumeratorHost
public function CreateNew() : ForEachEnumeratorHost

Valor devuelto

Tipo: Microsoft.SqlServer.Dts.Runtime.ForEachEnumeratorHost

Ejemplos

The following code example creates a ForEachEnumeratorHost for the For Each Item enumerator.

[!NOTA]

To use the following code sample with a locale other than English, change the string, "For Each Item Enumerator", to the localized name of the enumerator.

ForEachEnumeratorInfos feInfos = app.ForEachEnumeratorInfos;

//Find the For Each Item Enumerator, and 
//create its host.
ForEachEnumeratorInfo feFileEnum = feInfos["For Each Item Enumerator"];
ForEachEnumeratorHost feHost = feFileEnum.CreateNew();
Dim feInfos As ForEachEnumeratorInfos =  app.ForEachEnumeratorInfos 
 
'Find the For Each Item Enumerator, and 
'create its host.
Dim feFileEnum As ForEachEnumeratorInfo =  feInfos("For Each Item Enumerator") 
Dim feHost As ForEachEnumeratorHost =  feFileEnum.CreateNew()

Vea también

Referencia

ForEachEnumeratorInfo Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime