PipelineComponent.InsertExternalMetadataColumnAt Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Inserts a new external metadata column into the collection of external metadata columns at the specified index.
public:
virtual Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSExternalMetadataColumn100 ^ InsertExternalMetadataColumnAt(int iID, int iExternalMetadataColumnIndex, System::String ^ strName, System::String ^ strDescription);
[System.CLSCompliant(false)]
public virtual Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100 InsertExternalMetadataColumnAt (int iID, int iExternalMetadataColumnIndex, string strName, string strDescription);
[<System.CLSCompliant(false)>]
abstract member InsertExternalMetadataColumnAt : int * int * string * string -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100
override this.InsertExternalMetadataColumnAt : int * int * string * string -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100
Public Overridable Function InsertExternalMetadataColumnAt (iID As Integer, iExternalMetadataColumnIndex As Integer, strName As String, strDescription As String) As IDTSExternalMetadataColumn100
Parameters
- iID
- Int32
The ID of the IDTSInput100 or IDTSOutput100 that the external metadata column is associated with.
- iExternalMetadataColumnIndex
- Int32
The index at which the new external metadata column should be inserted into the collection.
- strName
- String
The Name of the new external metadata column.
- strDescription
- String
The Description of the new external metadata column.
Returns
The newly created IDTSExternalMetadataColumn100.
- Attributes
Remarks
For more information about working with external metadata columns, see Implementing External Metadata.