| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?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 <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> 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">[<topic://cpconsettingupdatatabledatacolumnmappings>]</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>
|