SqlBulkCopyColumnMappingCollection.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="SqlBulkCopyColumnMappingCollection" FullName="System.Data.SqlClient.SqlBulkCopyColumnMappingCollection">
  3. <TypeSignature Language="C#" Value="public sealed class SqlBulkCopyColumnMappingCollection : System.Collections.CollectionBase" />
  4. <AssemblyInfo>
  5. <AssemblyName>System.Data</AssemblyName>
  6. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  7. </AssemblyInfo>
  8. <Base>
  9. <BaseTypeName>System.Collections.CollectionBase</BaseTypeName>
  10. </Base>
  11. <Interfaces />
  12. <Docs>
  13. <remarks>
  14. <attribution license="cc4" from="Microsoft" modified="false" />
  15. <para>Column mappings define the mapping between data source and the target table.</para>
  16. <para>If mappings are not defined—that is, the <see cref="P:System.Data.SqlClient.SqlBulkCopy.ColumnMappings" /> collection is empty—the columns are mapped implicitly based on ordinal position. For this to work, source and target schemas must match. If they do not, an <see cref="T:System.InvalidOperationException" /> is thrown.</para>
  17. <para>If the <see cref="P:System.Data.SqlClient.SqlBulkCopy.ColumnMappings" /> collection is not empty, not every column present in the data source has to be specified. Those not mapped by the collection are ignored.</para>
  18. <para>You can refer to source and target columns by either name or ordinal. You can mix by-name and by-ordinal column references in the same mappings collection.</para>
  19. </remarks>
  20. <summary>
  21. <attribution license="cc4" from="Microsoft" modified="false" />
  22. <para>Collection of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> objects that inherits from <see cref="T:System.Collections.CollectionBase" />.</para>
  23. </summary>
  24. </Docs>
  25. <Members>
  26. <Member MemberName="Add">
  27. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping Add (System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping);" />
  28. <MemberType>Method</MemberType>
  29. <AssemblyInfo>
  30. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  31. </AssemblyInfo>
  32. <ReturnValue>
  33. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  34. </ReturnValue>
  35. <Parameters>
  36. <Parameter Name="bulkCopyColumnMapping" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping" />
  37. </Parameters>
  38. <Docs>
  39. <remarks>To be added.</remarks>
  40. <summary>
  41. <attribution license="cc4" from="Microsoft" modified="false" />
  42. <para>Adds the specified mapping to the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />.</para>
  43. </summary>
  44. <returns>
  45. <attribution license="cc4" from="Microsoft" modified="false" />
  46. <para>A <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object.</para>
  47. </returns>
  48. <param name="bulkCopyColumnMapping">
  49. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object that describes the mapping to be added to the collection.</param>
  50. </Docs>
  51. </Member>
  52. <Member MemberName="Add">
  53. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping Add (int sourceColumnIndex, int destinationColumnIndex);" />
  54. <MemberType>Method</MemberType>
  55. <AssemblyInfo>
  56. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  57. </AssemblyInfo>
  58. <ReturnValue>
  59. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  60. </ReturnValue>
  61. <Parameters>
  62. <Parameter Name="sourceColumnIndex" Type="System.Int32" />
  63. <Parameter Name="destinationColumnIndex" Type="System.Int32" />
  64. </Parameters>
  65. <Docs>
  66. <remarks>
  67. <attribution license="cc4" from="Microsoft" modified="false" />
  68. <para>Mappings in a collection must be uniform: either all integer/integer pairs, all string/string pairs, all integer/string pairs, or all string/integer pairs. If you try to add a mapping that is different from others already in the collection, an <see cref="T:System.InvalidOperationException" /> is thrown.</para>
  69. </remarks>
  70. <summary>
  71. <attribution license="cc4" from="Microsoft" modified="false" />
  72. <para>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> and adds it to the collection, using ordinals to specify both source and destination columns.</para>
  73. </summary>
  74. <returns>
  75. <attribution license="cc4" from="Microsoft" modified="false" />
  76. <para>A column mapping.</para>
  77. </returns>
  78. <param name="sourceColumnIndex">
  79. <attribution license="cc4" from="Microsoft" modified="false" />The ordinal position of the source column within the data source.</param>
  80. <param name="destinationColumnIndex">
  81. <attribution license="cc4" from="Microsoft" modified="false" />The ordinal position of the destination column within the destination table.</param>
  82. </Docs>
  83. </Member>
  84. <Member MemberName="Add">
  85. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping Add (int sourceColumnIndex, string destinationColumn);" />
  86. <MemberType>Method</MemberType>
  87. <AssemblyInfo>
  88. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  89. </AssemblyInfo>
  90. <ReturnValue>
  91. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  92. </ReturnValue>
  93. <Parameters>
  94. <Parameter Name="sourceColumnIndex" Type="System.Int32" />
  95. <Parameter Name="destinationColumn" Type="System.String" />
  96. </Parameters>
  97. <Docs>
  98. <remarks>
  99. <attribution license="cc4" from="Microsoft" modified="false" />
  100. <para>Mappings in a collection must be uniform: either all integer/integer pairs, all string/string pairs, all integer/string pairs, or all string/integer pairs. If you try to add a mapping that is different from others already in the collection, an <see cref="T:System.InvalidOperationException" /> is thrown.</para>
  101. </remarks>
  102. <summary>
  103. <attribution license="cc4" from="Microsoft" modified="false" />
  104. <para>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> and adds it to the collection, using an ordinal for the source column and a string for the destination column.</para>
  105. </summary>
  106. <returns>
  107. <attribution license="cc4" from="Microsoft" modified="false" />
  108. <para>A column mapping.</para>
  109. </returns>
  110. <param name="sourceColumnIndex">
  111. <attribution license="cc4" from="Microsoft" modified="false" />The ordinal position of the source column within the data source.</param>
  112. <param name="destinationColumn">
  113. <attribution license="cc4" from="Microsoft" modified="false" />The name of the destination column within the destination table.</param>
  114. </Docs>
  115. </Member>
  116. <Member MemberName="Add">
  117. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping Add (string sourceColumn, int destinationColumnIndex);" />
  118. <MemberType>Method</MemberType>
  119. <AssemblyInfo>
  120. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  121. </AssemblyInfo>
  122. <ReturnValue>
  123. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  124. </ReturnValue>
  125. <Parameters>
  126. <Parameter Name="sourceColumn" Type="System.String" />
  127. <Parameter Name="destinationColumnIndex" Type="System.Int32" />
  128. </Parameters>
  129. <Docs>
  130. <remarks>
  131. <attribution license="cc4" from="Microsoft" modified="false" />
  132. <para>Mappings in a collection must be uniform: either all integer/integer pairs, all string/string pairs, all integer/string pairs, or all string/integer pairs. If you try to add a mapping that is different from others already in the collection, an <see cref="T:System.InvalidOperationException" /> is thrown.</para>
  133. </remarks>
  134. <summary>
  135. <attribution license="cc4" from="Microsoft" modified="false" />
  136. <para>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> and adds it to the collection, using a column name to describe the source column and an ordinal to specify the destination column.</para>
  137. </summary>
  138. <returns>
  139. <attribution license="cc4" from="Microsoft" modified="false" />
  140. <para>A column mapping.</para>
  141. </returns>
  142. <param name="sourceColumn">
  143. <attribution license="cc4" from="Microsoft" modified="false" />The name of the source column within the data source.</param>
  144. <param name="destinationColumnIndex">
  145. <attribution license="cc4" from="Microsoft" modified="false" />The ordinal position of the destination column within the destination table.</param>
  146. </Docs>
  147. </Member>
  148. <Member MemberName="Add">
  149. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping Add (string sourceColumn, string destinationColumn);" />
  150. <MemberType>Method</MemberType>
  151. <AssemblyInfo>
  152. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  153. </AssemblyInfo>
  154. <ReturnValue>
  155. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  156. </ReturnValue>
  157. <Parameters>
  158. <Parameter Name="sourceColumn" Type="System.String" />
  159. <Parameter Name="destinationColumn" Type="System.String" />
  160. </Parameters>
  161. <Docs>
  162. <remarks>
  163. <attribution license="cc4" from="Microsoft" modified="false" />
  164. <para>Mappings in a collection must be uniform: either all integer/integer pairs, all string/string pairs, all integer/string pairs, or all string/integer pairs. If you try to add a mapping that is different from others already in the collection, an <see cref="T:System.InvalidOperationException" /> is thrown.</para>
  165. </remarks>
  166. <summary>
  167. <attribution license="cc4" from="Microsoft" modified="false" />
  168. <para>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> and adds it to the collection, using column names to specify both source and destination columns.</para>
  169. </summary>
  170. <returns>
  171. <attribution license="cc4" from="Microsoft" modified="false" />
  172. <para>A column mapping.</para>
  173. </returns>
  174. <param name="sourceColumn">
  175. <attribution license="cc4" from="Microsoft" modified="false" />The name of the source column within the data source.</param>
  176. <param name="destinationColumn">
  177. <attribution license="cc4" from="Microsoft" modified="false" />The name of the destination column within the destination table.</param>
  178. </Docs>
  179. </Member>
  180. <Member MemberName="Clear">
  181. <MemberSignature Language="C#" Value="public void Clear ();" />
  182. <MemberType>Method</MemberType>
  183. <AssemblyInfo>
  184. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  185. </AssemblyInfo>
  186. <ReturnValue>
  187. <ReturnType>System.Void</ReturnType>
  188. </ReturnValue>
  189. <Parameters />
  190. <Docs>
  191. <remarks>
  192. <attribution license="cc4" from="Microsoft" modified="false" />
  193. <para>The <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Clear" /> method is most commonly used when you use a single <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance to process more than one bulk copy operation. If you create column mappings for one bulk copy operation, you must clear the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" /> after the <see cref="Overload:System.Data.SqlClient.SqlBulkCopy.WriteToServer" /> method and before processing the next bulk copy.</para>
  194. <para>Performing several bulk copies using the same <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance will usually be more efficient from a performance point of view than using a separate <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> for each operation.</para>
  195. </remarks>
  196. <summary>
  197. <attribution license="cc4" from="Microsoft" modified="false" />
  198. <para>Clears the contents of the collection.</para>
  199. </summary>
  200. </Docs>
  201. </Member>
  202. <Member MemberName="Contains">
  203. <MemberSignature Language="C#" Value="public bool Contains (System.Data.SqlClient.SqlBulkCopyColumnMapping value);" />
  204. <MemberType>Method</MemberType>
  205. <AssemblyInfo>
  206. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  207. </AssemblyInfo>
  208. <ReturnValue>
  209. <ReturnType>System.Boolean</ReturnType>
  210. </ReturnValue>
  211. <Parameters>
  212. <Parameter Name="value" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping" />
  213. </Parameters>
  214. <Docs>
  215. <remarks>To be added.</remarks>
  216. <summary>
  217. <attribution license="cc4" from="Microsoft" modified="false" />
  218. <para>Gets a value indicating whether a specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object exists in the collection.</para>
  219. </summary>
  220. <returns>
  221. <attribution license="cc4" from="Microsoft" modified="false" />
  222. <para>true if the specified mapping exists in the collection; otherwise false.</para>
  223. </returns>
  224. <param name="value">
  225. <attribution license="cc4" from="Microsoft" modified="false" />A valid <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object. </param>
  226. </Docs>
  227. </Member>
  228. <Member MemberName="CopyTo">
  229. <MemberSignature Language="C#" Value="public void CopyTo (System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index);" />
  230. <MemberType>Method</MemberType>
  231. <AssemblyInfo>
  232. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  233. </AssemblyInfo>
  234. <ReturnValue>
  235. <ReturnType>System.Void</ReturnType>
  236. </ReturnValue>
  237. <Parameters>
  238. <Parameter Name="array" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping[]" />
  239. <Parameter Name="index" Type="System.Int32" />
  240. </Parameters>
  241. <Docs>
  242. <remarks>To be added.</remarks>
  243. <summary>
  244. <attribution license="cc4" from="Microsoft" modified="false" />
  245. <para>Copies the elements of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" /> to an array of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> items, starting at a particular index.</para>
  246. </summary>
  247. <param name="array">
  248. <attribution license="cc4" from="Microsoft" modified="false" />The one-dimensional <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> array that is the destination of the elements copied from <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />. The array must have zero-based indexing. </param>
  249. <param name="index">
  250. <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index in <paramref name="array" /> at which copying begins. </param>
  251. </Docs>
  252. </Member>
  253. <Member MemberName="IndexOf">
  254. <MemberSignature Language="C#" Value="public int IndexOf (System.Data.SqlClient.SqlBulkCopyColumnMapping value);" />
  255. <MemberType>Method</MemberType>
  256. <AssemblyInfo>
  257. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  258. </AssemblyInfo>
  259. <ReturnValue>
  260. <ReturnType>System.Int32</ReturnType>
  261. </ReturnValue>
  262. <Parameters>
  263. <Parameter Name="value" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping" />
  264. </Parameters>
  265. <Docs>
  266. <remarks>To be added.</remarks>
  267. <summary>
  268. <attribution license="cc4" from="Microsoft" modified="false" />
  269. <para>Gets the index of the specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object.</para>
  270. </summary>
  271. <returns>
  272. <attribution license="cc4" from="Microsoft" modified="false" />
  273. <para>The zero-based index of the column mapping, or -1 if the column mapping is not found in the collection.</para>
  274. </returns>
  275. <param name="value">
  276. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object for which to search.</param>
  277. </Docs>
  278. </Member>
  279. <Member MemberName="Insert">
  280. <MemberSignature Language="C#" Value="public void Insert (int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value);" />
  281. <MemberType>Method</MemberType>
  282. <AssemblyInfo>
  283. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  284. </AssemblyInfo>
  285. <ReturnValue>
  286. <ReturnType>System.Void</ReturnType>
  287. </ReturnValue>
  288. <Parameters>
  289. <Parameter Name="index" Type="System.Int32" />
  290. <Parameter Name="value" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping" />
  291. </Parameters>
  292. <Docs>
  293. <remarks>To be added.</remarks>
  294. <summary>
  295. <attribution license="cc4" from="Microsoft" modified="false" />
  296. <para>Insert a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> at the index specified.</para>
  297. </summary>
  298. <param name="index">
  299. <attribution license="cc4" from="Microsoft" modified="false" />Integer value of the location within the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" /> at which to insert the new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" />.</param>
  300. <param name="value">
  301. <attribution license="cc4" from="Microsoft" modified="false" />
  302. <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object to be inserted in the collection.</param>
  303. </Docs>
  304. </Member>
  305. <Member MemberName="Item">
  306. <MemberSignature Language="C#" Value="public System.Data.SqlClient.SqlBulkCopyColumnMapping this[int index] { get; }" />
  307. <MemberType>Property</MemberType>
  308. <AssemblyInfo>
  309. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  310. </AssemblyInfo>
  311. <ReturnValue>
  312. <ReturnType>System.Data.SqlClient.SqlBulkCopyColumnMapping</ReturnType>
  313. </ReturnValue>
  314. <Parameters>
  315. <Parameter Name="index" Type="System.Int32" />
  316. </Parameters>
  317. <Docs>
  318. <param name="index">To be added.</param>
  319. <summary>To be added.</summary>
  320. <value>To be added.</value>
  321. <remarks>To be added.</remarks>
  322. </Docs>
  323. </Member>
  324. <Member MemberName="Remove">
  325. <MemberSignature Language="C#" Value="public void Remove (System.Data.SqlClient.SqlBulkCopyColumnMapping value);" />
  326. <MemberType>Method</MemberType>
  327. <AssemblyInfo>
  328. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  329. </AssemblyInfo>
  330. <ReturnValue>
  331. <ReturnType>System.Void</ReturnType>
  332. </ReturnValue>
  333. <Parameters>
  334. <Parameter Name="value" Type="System.Data.SqlClient.SqlBulkCopyColumnMapping" />
  335. </Parameters>
  336. <Docs>
  337. <remarks>
  338. <attribution license="cc4" from="Microsoft" modified="false" />
  339. <para>The <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping)" /> method is most commonly used when you use a single <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance to process more than one bulk copy operation. If you create column mappings for one bulk copy operation, you must remove mappings that no longer apply after the <see cref="Overload:System.Data.SqlClient.SqlBulkCopy.WriteToServer" /> method is called and before defining mapping for the next bulk copy. You can clear the entire collection by using the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Clear" /> method, or remove mappings individually using the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping)" /> method or the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.RemoveAt(System.Int32)" /> method.</para>
  340. <para>Performing several bulk copies using the same <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance will usually be more efficient from a performance point of view than using a separate <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> for each operation.</para>
  341. </remarks>
  342. <summary>
  343. <attribution license="cc4" from="Microsoft" modified="false" />
  344. <para>Removes the specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> element from the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />.</para>
  345. </summary>
  346. <param name="value">
  347. <attribution license="cc4" from="Microsoft" modified="false" />
  348. <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object to be removed from the collection.</param>
  349. </Docs>
  350. </Member>
  351. <Member MemberName="RemoveAt">
  352. <MemberSignature Language="C#" Value="public void RemoveAt (int index);" />
  353. <MemberType>Method</MemberType>
  354. <AssemblyInfo>
  355. <AssemblyVersion>2.0.0.0</AssemblyVersion>
  356. </AssemblyInfo>
  357. <ReturnValue>
  358. <ReturnType>System.Void</ReturnType>
  359. </ReturnValue>
  360. <Parameters>
  361. <Parameter Name="index" Type="System.Int32" />
  362. </Parameters>
  363. <Docs>
  364. <remarks>
  365. <attribution license="cc4" from="Microsoft" modified="false" />
  366. <para>The <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.RemoveAt(System.Int32)" /> method is most commonly used when you use a single <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance to process more than one bulk copy operation. If you create column mappings for one bulk copy operation, you must remove mappings that no longer apply after the <see cref="Overload:System.Data.SqlClient.SqlBulkCopy.WriteToServer" /> method is called and before defining mapping for the next bulk copy. You can clear the entire collection by using the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Clear" /> method, or remove mappings individually using the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping)" /> method or the <see cref="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.RemoveAt(System.Int32)" /> method.</para>
  367. <para>Performing several bulk copies using the same <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance will usually be more efficient from a performance point of view than using a separate <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> for each operation.</para>
  368. </remarks>
  369. <summary>
  370. <attribution license="cc4" from="Microsoft" modified="false" />
  371. <para>Removes the mapping at the specified index from the collection.</para>
  372. </summary>
  373. <param name="index">
  374. <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object to be removed from the collection.</param>
  375. </Docs>
  376. </Member>
  377. </Members>
  378. </Type>