Class DomainServiceSubmittedChangesEventArgs
Event arguments for a completed submit operation.
Inheritance
Namespace: Telerik.Windows.Controls.DomainServices
Assembly: Telerik.Windows.Controls.DomainServices.dll
Syntax
public class DomainServiceSubmittedChangesEventArgs : AsyncCompletedEventArgs
Properties
ChangeSet
Gets the set of all changed entities (added, deleted, modified).
Declaration
public EntityChangeSet ChangeSet { get; }
Property Value
System.ServiceModel.DomainServices.Client.EntityChangeSet
The set of all changed entities. |
EntitiesInError
Gets or sets the entities in error.
Declaration
public IEnumerable<Entity> EntitiesInError { get; }
Property Value
System.Collections.Generic.IEnumerable<System.ServiceModel.DomainServices.Client.Entity>
A collection of entities that are in error. |
HasError
Gets a value indicating whether the operation has failed. If true, inspect the Error property for details.
Declaration
public bool HasError { get; }
Property Value
System.Boolean
|
IsErrorHandled
Gets or sets a value indicating whether the operation error has been marked as handled by calling MarkErrorAsHandled() method.
Declaration
public bool IsErrorHandled { get; }
Property Value
System.Boolean
|
Methods
MarkErrorAsHandled()
Marks the error as handled.
Declaration
public void MarkErrorAsHandled()