Event arguments for a completed submit operation.
Definition
Namespace:Telerik.Windows.Controls.DataServices
Assembly:Telerik.Windows.Controls.DataServices.dll
Syntax:
C#
public class DataServiceSubmittedChangesEventArgs : AsyncCompletedEventArgs
Inheritance: objectEventArgsAsyncCompletedEventArgsDataServiceSubmittedChangesEventArgs
Inherited Members
Properties
DataServiceResponse
DataServiceResponse
Gets the data service response.
C#
public DataServiceResponse DataServiceResponse { get; }
The data service response.
Gets a value indicating whether the operation has failed. If true, inspect the Error property for details.
C#
public bool HasError { get; }
Gets or sets a value indicating whether the operation error has been marked as handled by calling MarkErrorAsHandled() method.
C#
public bool IsErrorHandled { get; }
Methods
Marks the error as handled.
C#
public void MarkErrorAsHandled()