ForEachEnumerator.CollectionEnumerator Property

 

Applies To: SQL Server 2016 Preview

Gets or sets Boolean that indicates if the foreach loop enumerator is enumerating collections of objects or enumerating collections of collections.

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

Syntax

public virtual bool CollectionEnumerator { get; set; }
public:
property bool CollectionEnumerator {
    virtual bool get();
    virtual void set(bool value);
}
abstract CollectionEnumerator : bool with get, set
override CollectionEnumerator : bool with get, set
Public Overridable Property CollectionEnumerator As Boolean

Property Value

Type: System.Boolean

A Boolean that indicates what the enumerator is iterating over.

Implements

IDTSForEachEnumerator.CollectionEnumerator

Remarks

true if the enumerator is iterating over a collection of collections. false if the enumerator is iterating over a collection of objects.

See Also

ForEachEnumerator Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top