Wraps a series of changes into a transaction, using the specified parameters that can be rolled back as a unit with the undo functionality of the design host.
- serviceProvider
- An IServiceProvider object representing the design host that provides control designer services for the associated control.
- component
- The control associated with the control designer.
- callback
- A System.Web.UI.Design.TransactedChangeCallback object representing a function to call in the control designer as part of the transaction.
- context
- An object that contains the argument for callback.
- description
- A description of the effect of allowing the transaction to complete, which is used by the design host to give the user an opportunity to cancel the transaction.
- member
- A System.ComponentModel.MemberDescriptor object (typically either an System.ComponentModel.EventDescriptor or a System.ComponentModel.PropertyDescriptor object) that describes the member of the associated control that is being invoked as part of the transaction.
The implementation of the ControlDesigner.InvokeTransactedChange(System.ComponentModel.IComponent, TransactedChangeCallback, object, string) method notifies the design host, which is represented by serviceProvider, that a change is occurring to the specified member (property or method) of the associated control and, if the change is not canceled by the design host, invokes the specified callback using the specified context as the argument, and then notifies the design host that the change has completed.
If the design host or the associated control throws a static Canceled exception field of a System.ComponentModel.Design.CheckoutException exception, the transaction is canceled without invoking callback.