|
564 | 564 | <ReturnType>System.Int32</ReturnType>
|
565 | 565 | </ReturnValue>
|
566 | 566 | <Docs>
|
567 |
| - <summary>To be added.</summary> |
568 |
| - <value>To be added.</value> |
| 567 | + <summary>Gets the number of elements contained in the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />.</summary> |
| 568 | + <value>The number of elements contained in the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />.</value> |
569 | 569 | <remarks>To be added.</remarks>
|
570 | 570 | </Docs>
|
571 | 571 | </Member>
|
|
596 | 596 | </ReturnValue>
|
597 | 597 | <Parameters />
|
598 | 598 | <Docs>
|
599 |
| - <summary>To be added.</summary> |
600 |
| - <returns>To be added.</returns> |
| 599 | + <summary>Returns an enumerator that iterates through a collection.</summary> |
| 600 | + <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns> |
601 | 601 | <remarks>To be added.</remarks>
|
602 | 602 | </Docs>
|
603 | 603 | </Member>
|
|
892 | 892 | <Parameter Name="index" Type="System.Int32" Index="1" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
893 | 893 | </Parameters>
|
894 | 894 | <Docs>
|
895 |
| - <param name="array">To be added.</param> |
896 |
| - <param name="index">To be added.</param> |
897 |
| - <summary>To be added.</summary> |
| 895 | + <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param> |
| 896 | + <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param> |
| 897 | + <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary> |
898 | 898 | <remarks>To be added.</remarks>
|
| 899 | + <exception cref="T:System.ArgumentNullException"> |
| 900 | + <paramref name="array" /> is <see langword="null" />.</exception> |
| 901 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 902 | + <paramref name="index" /> is less than zero.</exception> |
| 903 | + <exception cref="T:System.ArgumentException"> |
| 904 | + <paramref name="array" /> is multidimensional. |
| 905 | + |
| 906 | + -or- |
| 907 | + |
| 908 | + The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. |
| 909 | + |
| 910 | + -or- |
| 911 | + |
| 912 | + The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception> |
899 | 913 | </Docs>
|
900 | 914 | </Member>
|
901 | 915 | <Member MemberName="System.Collections.ICollection.IsSynchronized">
|
|
924 | 938 | <ReturnType>System.Boolean</ReturnType>
|
925 | 939 | </ReturnValue>
|
926 | 940 | <Docs>
|
927 |
| - <summary>To be added.</summary> |
928 |
| - <value>To be added.</value> |
| 941 | + <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary> |
| 942 | + <value> |
| 943 | + <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</value> |
929 | 944 | <remarks>To be added.</remarks>
|
930 | 945 | </Docs>
|
931 | 946 | </Member>
|
|
955 | 970 | <ReturnType>System.Object</ReturnType>
|
956 | 971 | </ReturnValue>
|
957 | 972 | <Docs>
|
958 |
| - <summary>To be added.</summary> |
959 |
| - <value>To be added.</value> |
| 973 | + <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary> |
| 974 | + <value>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</value> |
960 | 975 | <remarks>To be added.</remarks>
|
961 | 976 | </Docs>
|
962 | 977 | </Member>
|
|
989 | 1004 | <Parameter Name="value" Type="System.Object" Index="0" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
990 | 1005 | </Parameters>
|
991 | 1006 | <Docs>
|
992 |
| - <param name="value">To be added.</param> |
993 |
| - <summary>To be added.</summary> |
994 |
| - <returns>To be added.</returns> |
| 1007 | + <param name="value">The object to add to the <see cref="T:System.Collections.IList" />.</param> |
| 1008 | + <summary>Adds an item to the <see cref="T:System.Collections.IList" />.</summary> |
| 1009 | + <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns> |
995 | 1010 | <remarks>To be added.</remarks>
|
| 1011 | + <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList" /> is read-only. |
| 1012 | + |
| 1013 | + -or- |
| 1014 | + |
| 1015 | + The <see cref="T:System.Collections.IList" /> has a fixed size.</exception> |
996 | 1016 | </Docs>
|
997 | 1017 | </Member>
|
998 | 1018 | <Member MemberName="System.Collections.IList.Contains">
|
|
1024 | 1044 | <Parameter Name="value" Type="System.Object" Index="0" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
1025 | 1045 | </Parameters>
|
1026 | 1046 | <Docs>
|
1027 |
| - <param name="value">To be added.</param> |
1028 |
| - <summary>To be added.</summary> |
1029 |
| - <returns>To be added.</returns> |
| 1047 | + <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param> |
| 1048 | + <summary>Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value.</summary> |
| 1049 | + <returns> |
| 1050 | + <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns> |
1030 | 1051 | <remarks>To be added.</remarks>
|
1031 | 1052 | </Docs>
|
1032 | 1053 | </Member>
|
|
1059 | 1080 | <Parameter Name="value" Type="System.Object" Index="0" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
1060 | 1081 | </Parameters>
|
1061 | 1082 | <Docs>
|
1062 |
| - <param name="value">To be added.</param> |
1063 |
| - <summary>To be added.</summary> |
1064 |
| - <returns>To be added.</returns> |
| 1083 | + <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param> |
| 1084 | + <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList" />.</summary> |
| 1085 | + <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns> |
1065 | 1086 | <remarks>To be added.</remarks>
|
1066 | 1087 | </Docs>
|
1067 | 1088 | </Member>
|
|
1095 | 1116 | <Parameter Name="value" Type="System.Object" Index="1" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
1096 | 1117 | </Parameters>
|
1097 | 1118 | <Docs>
|
1098 |
| - <param name="index">To be added.</param> |
1099 |
| - <param name="value">To be added.</param> |
1100 |
| - <summary>To be added.</summary> |
| 1119 | + <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param> |
| 1120 | + <param name="value">The object to insert into the <see cref="T:System.Collections.IList" />.</param> |
| 1121 | + <summary>Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index.</summary> |
1101 | 1122 | <remarks>To be added.</remarks>
|
| 1123 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 1124 | + <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />.</exception> |
| 1125 | + <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList" /> is read-only. |
| 1126 | + |
| 1127 | + -or- |
| 1128 | + |
| 1129 | + The <see cref="T:System.Collections.IList" /> has a fixed size.</exception> |
| 1130 | + <exception cref="T:System.NullReferenceException"> |
| 1131 | + <paramref name="value" /> is null reference in the <see cref="T:System.Collections.IList" />.</exception> |
1102 | 1132 | </Docs>
|
1103 | 1133 | </Member>
|
1104 | 1134 | <Member MemberName="System.Collections.IList.IsFixedSize">
|
|
1127 | 1157 | <ReturnType>System.Boolean</ReturnType>
|
1128 | 1158 | </ReturnValue>
|
1129 | 1159 | <Docs>
|
1130 |
| - <summary>To be added.</summary> |
1131 |
| - <value>To be added.</value> |
| 1160 | + <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary> |
| 1161 | + <value> |
| 1162 | + <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</value> |
1132 | 1163 | <remarks>To be added.</remarks>
|
1133 | 1164 | </Docs>
|
1134 | 1165 | </Member>
|
|
1158 | 1189 | <ReturnType>System.Boolean</ReturnType>
|
1159 | 1190 | </ReturnValue>
|
1160 | 1191 | <Docs>
|
1161 |
| - <summary>To be added.</summary> |
1162 |
| - <value>To be added.</value> |
| 1192 | + <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only.</summary> |
| 1193 | + <value> |
| 1194 | + <see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</value> |
1163 | 1195 | <remarks>To be added.</remarks>
|
1164 | 1196 | </Docs>
|
1165 | 1197 | </Member>
|
|
1192 | 1224 | <Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
1193 | 1225 | </Parameters>
|
1194 | 1226 | <Docs>
|
1195 |
| - <param name="index">To be added.</param> |
1196 |
| - <summary>To be added.</summary> |
1197 |
| - <value>To be added.</value> |
| 1227 | + <param name="index">The zero-based index of the element to get or set.</param> |
| 1228 | + <summary>Gets or sets the element at the specified index.</summary> |
| 1229 | + <value>The element at the specified index.</value> |
1198 | 1230 | <remarks>To be added.</remarks>
|
| 1231 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 1232 | + <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />.</exception> |
| 1233 | + <exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.IList" /> is read-only.</exception> |
1199 | 1234 | </Docs>
|
1200 | 1235 | </Member>
|
1201 | 1236 | <Member MemberName="System.Collections.IList.Remove">
|
|
1227 | 1262 | <Parameter Name="value" Type="System.Object" Index="0" FrameworkAlternate="netcore-1.0;netcore-1.1" />
|
1228 | 1263 | </Parameters>
|
1229 | 1264 | <Docs>
|
1230 |
| - <param name="value">To be added.</param> |
1231 |
| - <summary>To be added.</summary> |
| 1265 | + <param name="value">The object to remove from the <see cref="T:System.Collections.IList" />.</param> |
| 1266 | + <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />.</summary> |
1232 | 1267 | <remarks>To be added.</remarks>
|
| 1268 | + <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList" /> is read-only. |
| 1269 | + |
| 1270 | + -or- |
| 1271 | + |
| 1272 | + The <see cref="T:System.Collections.IList" /> has a fixed size.</exception> |
1233 | 1273 | </Docs>
|
1234 | 1274 | </Member>
|
1235 | 1275 | </Members>
|
|
0 commit comments