Show / Hide Table of Contents

Class ReactiveEntityLoadFailedEventArgs

Event arguments for an EntityLoadFailed event.

Inheritance
System.Object
ReactiveEntityEventArgs
ReactiveEntityLoadFailedEventArgs
Implements
IKnownResource
Inherited Members
ReactiveEntityEventArgs.Uri
ReactiveEntityEventArgs.EntityType
ReactiveEntityEventArgs.Entity
Namespace: Reaqtor.QueryEngine.Events
Assembly: Reaqtor.QueryEngine.dll
Syntax
public class ReactiveEntityLoadFailedEventArgs : ReactiveEntityEventArgs, IKnownResource

Constructors

ReactiveEntityLoadFailedEventArgs(Uri, IReactiveResource, ReactiveEntityKind, Exception)

Creates a new instance of the ReactiveEntityLoadFailedEventArgs class for the specified entity.

Declaration
public ReactiveEntityLoadFailedEventArgs(Uri uri, IReactiveResource entity, ReactiveEntityKind entityType, Exception error)
Parameters
Type Name Description
System.Uri uri

URI of the reactive entity.

IReactiveResource entity

Reactive entity.

ReactiveEntityKind entityType

Kind of the reactive entity.

System.Exception error

The error that occured during load.

Properties

Error

Gets the exception that occurred during load.

Declaration
public Exception Error { get; }
Property Value
Type Description
System.Exception

Handled

Gets or sets whether the error was handled.

Declaration
public bool Handled { get; set; }
Property Value
Type Description
System.Boolean

Mitigation

Gets or sets an the strategy to use when handling the entity load failure.

Declaration
public ReactiveEntityRecoveryFailureMitigation Mitigation { get; set; }
Property Value
Type Description
ReactiveEntityRecoveryFailureMitigation

Implements

IKnownResource
In This Article
Back to top Generated by DocFX