Skip to content

Commit

Permalink
docs change
Browse files Browse the repository at this point in the history
  • Loading branch information
Wraith2 committed Apr 20, 2023
1 parent de6ecde commit c065dbb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopy.xml
Expand Up @@ -503,14 +503,15 @@ and faster to use a Transact-SQL `INSERT … SELECT` statement to copy the data.
property.
</value>
<remarks>
<format type="text/markdown"><![CDATA[
<format type="text/markdown">
<![CDATA[
## Remarks
This value is incremented during the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.SqlRowsCopied> event and does not imply that this number of rows has been sent to the server or committed.
This value can be accessed during or after the execution of a bulk copy operation.
This value can become negative if the number of rows exceelds int.MaxValue. If this may happen use the RowsCopied64 property.
This value will wrap around and become negative if the number of rows exceeds int.MaxValue. Consider using the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.RowsCopied64> property.
]]></format>
</remarks>
</RowsCopied>
Expand Down

0 comments on commit c065dbb

Please sign in to comment.