|
507 | 507 | <Parameter Name="savepointName" Type="System.String" Index="0" FrameworkAlternate="net-5.0" />
|
508 | 508 | </Parameters>
|
509 | 509 | <Docs>
|
510 |
| - <param name="savepointName">To be added.</param> |
511 |
| - <summary>To be added.</summary> |
| 510 | + <param name="savepointName">The name of the savepoint to release.</param> |
| 511 | + <summary>Destroys a savepoint previously defined in the current transaction. This allows the system to reclaim some resources before the transaction ends.</summary> |
512 | 512 | <remarks>To be added.</remarks>
|
513 | 513 | </Docs>
|
514 | 514 | </Member>
|
|
534 | 534 | <Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" Index="1" FrameworkAlternate="net-5.0" />
|
535 | 535 | </Parameters>
|
536 | 536 | <Docs>
|
537 |
| - <param name="savepointName">To be added.</param> |
538 |
| - <param name="cancellationToken">To be added.</param> |
539 |
| - <summary>To be added.</summary> |
540 |
| - <returns>To be added.</returns> |
| 537 | + <param name="savepointName">The name of the savepoint to release.</param> |
| 538 | + <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param> |
| 539 | + <summary>Destroys a savepoint previously defined in the current transaction. This allows the system to reclaim some resources before the transaction ends.</summary> |
| 540 | + <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns> |
541 | 541 | <remarks>To be added.</remarks>
|
542 | 542 | </Docs>
|
543 | 543 | </Member>
|
|
605 | 605 | <Parameter Name="savepointName" Type="System.String" Index="0" FrameworkAlternate="net-5.0" />
|
606 | 606 | </Parameters>
|
607 | 607 | <Docs>
|
608 |
| - <param name="savepointName">To be added.</param> |
609 |
| - <summary>To be added.</summary> |
| 608 | + <param name="savepointName">The name of the savepoint to roll back to.</param> |
| 609 | + <summary>Rolls back all commands that were executed after the specified savepoint was established.</summary> |
610 | 610 | <remarks>To be added.</remarks>
|
611 | 611 | </Docs>
|
612 | 612 | </Member>
|
|
674 | 674 | <Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" Index="1" FrameworkAlternate="net-5.0" />
|
675 | 675 | </Parameters>
|
676 | 676 | <Docs>
|
677 |
| - <param name="savepointName">To be added.</param> |
678 |
| - <param name="cancellationToken">To be added.</param> |
679 |
| - <summary>To be added.</summary> |
680 |
| - <returns>To be added.</returns> |
| 677 | + <param name="savepointName">The name of the savepoint to roll back to.</param> |
| 678 | + <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param> |
| 679 | + <summary>Rolls back all commands that were executed after the specified savepoint was established.</summary> |
| 680 | + <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns> |
681 | 681 | <remarks>To be added.</remarks>
|
682 | 682 | </Docs>
|
683 | 683 | </Member>
|
|
703 | 703 | <Parameter Name="savepointName" Type="System.String" Index="0" FrameworkAlternate="net-5.0" />
|
704 | 704 | </Parameters>
|
705 | 705 | <Docs>
|
706 |
| - <param name="savepointName">To be added.</param> |
707 |
| - <summary>To be added.</summary> |
| 706 | + <param name="savepointName">The name of the savepoint to be created.</param> |
| 707 | + <summary>Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.</summary> |
708 | 708 | <remarks>To be added.</remarks>
|
709 | 709 | </Docs>
|
710 | 710 | </Member>
|
|
730 | 730 | <Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" Index="1" FrameworkAlternate="net-5.0" />
|
731 | 731 | </Parameters>
|
732 | 732 | <Docs>
|
733 |
| - <param name="savepointName">To be added.</param> |
734 |
| - <param name="cancellationToken">To be added.</param> |
735 |
| - <summary>To be added.</summary> |
736 |
| - <returns>To be added.</returns> |
| 733 | + <param name="savepointName">The name of the savepoint to be created.</param> |
| 734 | + <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param> |
| 735 | + <summary>Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.</summary> |
| 736 | + <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns> |
737 | 737 | <remarks>To be added.</remarks>
|
738 | 738 | </Docs>
|
739 | 739 | </Member>
|
|
756 | 756 | <ReturnType>System.Boolean</ReturnType>
|
757 | 757 | </ReturnValue>
|
758 | 758 | <Docs>
|
759 |
| - <summary>To be added.</summary> |
760 |
| - <value>To be added.</value> |
| 759 | + <summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbTransaction" /> instance supports database savepoints. |
| 760 | + If <see langword="false" />, the methods <see cref="M:System.Data.Common.DbTransaction.SaveAsync(System.String,System.Threading.CancellationToken)" />, <see cref="M:System.Data.Common.DbTransaction.RollbackAsync(System.String,System.Threading.CancellationToken)" /> and <see cref="M:System.Data.Common.DbTransaction.ReleaseAsync(System.String,System.Threading.CancellationToken)" /> as well as their synchronous counterparts are expected to throw <see cref="T:System.NotSupportedException" />.</summary> |
| 761 | + <value> |
| 762 | + <see langword="true" /> if this <see cref="T:System.Data.Common.DbTransaction" /> instance supports database savepoints; otherwise, <see langword="false" />.</value> |
761 | 763 | <remarks>To be added.</remarks>
|
762 | 764 | </Docs>
|
763 | 765 | </Member>
|
|
0 commit comments