IDTSExternalMetadataColumnCollection100 Interface

Definition

Contains a collection of IDTSExternalMetadataColumn100 objects that represent the columns of an external data source.

public interface class IDTSExternalMetadataColumnCollection100 : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("E8B26BC5-3188-469E-B3D2-DD70B489B612")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSExternalMetadataColumnCollection100 : System.Collections.IEnumerable
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
[System.Runtime.InteropServices.Guid("8CC6DE87-DD97-4F02-92DC-DA4633A50B64")]
public interface IDTSExternalMetadataColumnCollection100 : System.Collections.IEnumerable
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
[System.Runtime.InteropServices.Guid("C730001F-1CF6-47E6-A724-0497BB62716A")]
public interface IDTSExternalMetadataColumnCollection100 : System.Collections.IEnumerable
[<System.Runtime.InteropServices.Guid("E8B26BC5-3188-469E-B3D2-DD70B489B612")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSExternalMetadataColumnCollection100 = interface
    interface IEnumerable
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
[<System.Runtime.InteropServices.Guid("8CC6DE87-DD97-4F02-92DC-DA4633A50B64")>]
type IDTSExternalMetadataColumnCollection100 = interface
    interface IEnumerable
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
[<System.Runtime.InteropServices.Guid("C730001F-1CF6-47E6-A724-0497BB62716A")>]
type IDTSExternalMetadataColumnCollection100 = interface
    interface IEnumerable
Public Interface IDTSExternalMetadataColumnCollection100
Implements IEnumerable
Attributes
Implements

Remarks

A data flow component populates and uses this collection to validate the columns in its IDTSInputColumnCollection100 or IDTSOutputColumnCollection100 when the ValidateExternalMetadata property is false or when the SSIS Designer is in offline mode.

The collection typically represents the columns of an external data source used by a source or destination component. Use of the collection allows the component to perform validation without an expensive, time-consuming round trip to the source itself.

For more information about implementing external metadata columns in components see Implementing External Metadata.

Properties

Count

Gets the number of elements contained in an IDTSExternalMetadataColumnCollection100.

IsUsed

Gets or sets a value that indicates whether the collection is populated by the component.

Item[Object]

Gets the IDTSExternalMetadataColumn100 object specified by the Index parameter.

Methods

FindObjectByID(Int32)

Locates an object in the collection by its ID.

FindObjectIndexByID(Int32)

Locates the index of an object in the collection by its ID.

GetEnumerator()

Returns an enumerator that can iterate through an IDTSExternalMetadataColumnCollection100.

GetObjectByID(Int32)

Gets an IDTSExternalMetadataColumn100 object that has the specified ID.

GetObjectIndexByID(Int32)

Gets the index of an IDTSExternalMetadataColumn100 object that has the specified ID.

New()

Creates a new IDTSExternalMetadataColumn100 object and adds it to the end of a collection.

NewAt(Int32)

Creates a new IDTSExternalMetadataColumn100 at the specified location in a collection.

RemoveAll()

Deletes each IDTSExternalMetadataColumn100 object in a collection.

RemoveObjectByID(Int32)

Removes an IDTSExternalMetadataColumn100 object that has the specified ID.

RemoveObjectByIndex(Object)

Removes an IDTSExternalMetadataColumn100 object at the specified index.

SetIndex(Int32, Int32)

Changes the location in the collection of an IDTSExternalMetadataColumn100 object.

Applies to