다음을 통해 공유


ForEachADOEnumerator.Type Property

Gets or sets a value that indicates what type of object to enumerate over.

네임스페이스: Microsoft.SqlServer.Dts.Runtime.Enumerators.ADO
어셈블리: Microsoft.SqlServer.ForEachADOEnumerator (in microsoft.sqlserver.foreachadoenumerator.dll)

구문

‘선언
Public Property Type As ADOEnumerationType
public ADOEnumerationType Type { get; set; }
public:
virtual property ADOEnumerationType Type {
    ADOEnumerationType get () sealed;
    void set (ADOEnumerationType value) sealed;
}
/** @property */
public final ADOEnumerationType get_Type ()

/** @property */
public final void set_Type (ADOEnumerationType value)
public final function get Type () : ADOEnumerationType

public final function set Type (value : ADOEnumerationType)

속성 값

A value from the ADOEnumerationType enumeration that indicates what to enumerate over.

The following code sample shows how to use the Type property to differentiate the type of object, allowing different code to be written for handling different business logic, toggling check boxes in a user interface, or running any other special processes.

m_Enum = (ForEachADOEnumerator)FEEHost.InnerObject;
    if( m_Enum != null )
    {
        switch( m_Enum.Type )
        {
            case ADOEnumerationType.EnumerateAllRows:
                // Insert custom code here.
                break;

            case ADOEnumerationType.EnumerateRowsInFirstTable:
                // Insert custom code here.
                break;

            case ADOEnumerationType.EnumerateTables:
                // Insert custom code here.
                break;

            default:
                // Insert custom code here.
                break;
        }

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

ForEachADOEnumerator Class
ForEachADOEnumerator Members
Microsoft.SqlServer.Dts.Runtime.Enumerators.ADO Namespace