﻿<?xml version="1.0" encoding="utf-8"?><Type Name="IColumnMappingCollection" FullName="System.Data.IColumnMappingCollection"><TypeSignature Language="C#" Maintainer="auto" Value="public interface IColumnMappingCollection : System.Collections.IList" /><AssemblyInfo><AssemblyName>System.Data</AssemblyName><AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey><AssemblyVersion>1.0.3300.0</AssemblyVersion><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Interfaces><Interface><InterfaceName>System.Collections.IList</InterfaceName></Interface></Interfaces><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Data.IColumnMappingCollection" /> interface enables an inheriting class to implement a ColumnMapping collection. For more information, see <format type="text/html"><a href="D023260A-A66A-4C39-B8F4-090CD130E730">[&lt;topic://cpconsettingupdatatabledatacolumnmappings&gt;]</a></format>.</para><para>An application does not create an instance of the <see cref="T:System.Data.IColumnMappingCollection" /> interface directly, but creates an instance of a class that inherits <see cref="T:System.Data.IColumnMappingCollection" />.</para><para>Classes that inherit <see cref="T:System.Data.IColumnMappingCollection" /> must implement all inherited members, and typically define additional members to add provider-specific functionality. For example, the <see cref="T:System.Data.IColumnMappingCollection" /> interface defines the <see cref="M:System.Data.IColumnMappingCollection.RemoveAt(System.String)" /> method. In turn, the <see cref="T:System.Data.Common.DataTableMappingCollection" /> class inherits this method, and defines two additional overloads of <see cref="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.Int32)" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Contains a collection of DataColumnMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataColumnMappingCollection" />, which is used in common by .NET Framework data providers.</para></summary></Docs><Members><Member MemberName="Add"><MemberSignature Language="C#" Value="public System.Data.IColumnMapping Add (string sourceColumnName, string dataSetColumnName);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Data.IColumnMapping</ReturnType></ReturnValue><Parameters><Parameter Name="sourceColumnName" Type="System.String" /><Parameter Name="dataSetColumnName" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Adds a ColumnMapping object to the ColumnMapping collection using the source column and <see cref="T:System.Data.DataSet" /> column names.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The ColumnMapping object that was added to the collection.</para></returns><param name="sourceColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The case-sensitive name of the source column. </param><param name="dataSetColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The name of the <see cref="T:System.Data.DataSet" /> column. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Contains"><MemberSignature Language="C#" Value="public bool Contains (string sourceColumnName);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="sourceColumnName" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> contains a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name exists, otherwise false.</para></returns><param name="sourceColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The case-sensitive name of the source column. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetByDataSetColumn"><MemberSignature Language="C#" Value="public System.Data.IColumnMapping GetByDataSetColumn (string dataSetColumnName);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Data.IColumnMapping</ReturnType></ReturnValue><Parameters><Parameter Name="dataSetColumnName" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the ColumnMapping object with the specified <see cref="T:System.Data.DataSet" /> column name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The ColumnMapping object with the specified DataSet column name.</para></returns><param name="dataSetColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The name of the <see cref="T:System.Data.DataSet" /> column within the collection. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IndexOf"><MemberSignature Language="C#" Value="public int IndexOf (string sourceColumnName);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Parameters><Parameter Name="sourceColumnName" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name. The name is case-sensitive.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The zero-based location of the DataColumnMapping object with the specified source column name.</para></returns><param name="sourceColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The case-sensitive name of the source column. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Item"><MemberSignature Language="C#" Value="public object this[string index] { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.String" /></Parameters><Docs><param name="index">To be added: an object of type 'string'</param><summary>To be added</summary><value>To be added: an object of type 'object'</value><remarks>To be added</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RemoveAt"><MemberSignature Language="C#" Value="public void RemoveAt (string sourceColumnName);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="sourceColumnName" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see cref="P:System.Data.IColumnMapping.SourceColumn" /> name from the collection.</para></summary><param name="sourceColumnName"><attribution license="cc4" from="Microsoft" modified="false" />The case-sensitive SourceColumn name. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>