EditingScope Class
An editing scope represents a collection of changes to the ModelItem tree that can be committed or rolled back as one atomic unit of work.
Assembly: System.Activities.Presentation (in System.Activities.Presentation.dll)
System.Activities.Presentation.Model::ModelEditingScope
System.Activities.Presentation.Model::EditingScope
| Name | Description | |
|---|---|---|
![]() | Changes | Gets a list of changes. |
![]() | Description | Describes the group of changes. It can be changed anytime before the changes are committed.(Inherited from ModelEditingScope.) |
![]() | HasEffectiveChanges | Gets a Boolean that specifies whether changes have been applied to the editing scope. |
| Name | Description | |
|---|---|---|
![]() | CanComplete() | Determines whether the current editing scope instance can complete.(Overrides ModelEditingScope::CanComplete().) |
![]() | Complete() | Completes the editing scope by calling the OnComplete method.(Inherited from ModelEditingScope.) |
![]() | Dispose() | Disposes of this object by aborting changes unless the editing scope has already been completed or reverted.(Inherited from ModelEditingScope.) |
![]() | Dispose(Boolean) | Disposes of this object by aborting changes.(Inherited from ModelEditingScope.) |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | OnComplete() | Raises the Complete event.(Overrides ModelEditingScope::OnComplete().) |
![]() | OnException(Exception^) | Handles the specified exception.(Overrides ModelEditingScope::OnException(Exception^).) |
![]() | OnRevert(Boolean) | Raises the Revert event.(Overrides ModelEditingScope::OnRevert(Boolean).) |
![]() | Revert() | Abandons the changes made during the editing scope.(Inherited from ModelEditingScope.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
This is useful for batching together a set of changes to multiple ModelItem objects. As an example, in the messaging activities, the changes made from the raised dialogs will impact multiple property values. However, as all of the changes come from the raised dialog, the changes need to be considered as a batch and undone as a single unit of work. For more details on usage, see the Editing Scope sample
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


