OperationResultHandler Class

Definition

Used with OperationExecutor to handle operation results.

public class OperationResultHandler : Microsoft.EntityFrameworkCore.Design.IOperationResultHandler
public class OperationResultHandler : MarshalByRefObject, Microsoft.EntityFrameworkCore.Design.IOperationResultHandler
type OperationResultHandler = class
    interface IOperationResultHandler
type OperationResultHandler = class
    inherit MarshalByRefObject
    interface IOperationResultHandler
Public Class OperationResultHandler
Implements IOperationResultHandler
Public Class OperationResultHandler
Inherits MarshalByRefObject
Implements IOperationResultHandler
Inheritance
OperationResultHandler
Inheritance
OperationResultHandler
Implements

Constructors

OperationResultHandler()

Properties

ErrorMessage

Gets the error message if any.

ErrorStackTrace

Get the error stack trace if any.

ErrorType

Gets the type of the exception if any.

HasResult

Gets a value indicating whether a result is available.

Result

Gets the result.

Version

Gets the contract version of this handler.

Methods

OnError(String, String, String)

Invoked when an error occurs.

OnResult(Object)

Invoked when a result is available.

Applies to