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.
Gets an enumerator for iterating through the parameter collection.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Function GetEnumerator As IEnumerator(Of ParameterInfo)
'Usage
Dim instance As ParameterInfos
Dim returnValue As IEnumerator(Of ParameterInfo)
returnValue = instance.GetEnumerator()
public IEnumerator<ParameterInfo> GetEnumerator()
public:
virtual IEnumerator<ParameterInfo^>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<ParameterInfo>
override GetEnumerator : unit -> IEnumerator<ParameterInfo>
public final function GetEnumerator() : IEnumerator<ParameterInfo>
Return Value
Type: System.Collections.Generic.IEnumerator<ParameterInfo>
An IEnumerator<T> object that can be used to iterate through the parameter collection.
Implements
IEnumerable<T>.GetEnumerator()