Show / Hide Table of Contents

Class ReactiveEntityReplayFailedEventArgs

Event arguments for an EntityReplayFailed event.

Inheritance
System.Object
ReactiveEntityReplayFailedEventArgs
Namespace: Reaqtor.QueryEngine.Events
Assembly: Reaqtor.QueryEngine.dll
Syntax
public class ReactiveEntityReplayFailedEventArgs : EventArgs

Constructors

ReactiveEntityReplayFailedEventArgs(Uri, Exception)

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

Declaration
public ReactiveEntityReplayFailedEventArgs(Uri uri, Exception error)
Parameters
Type Name Description
System.Uri uri

URI of the reactive entity.

System.Exception error

The error that occured during load.

Properties

Error

Gets the exception that occurred during replay.

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

Uri

Gets the URI of the reactive entity.

Declaration
public Uri Uri { get; }
Property Value
Type Description
System.Uri
In This Article
Back to top Generated by DocFX