Show / Hide Table of Contents

Class EntityLoadFailedException

Exception representing the failure to load a reactive entity.

Inheritance
System.Object
EntityLoadFailedException
Namespace: Reaqtor.QueryEngine
Assembly: Reaqtor.QueryEngine.dll
Syntax
public class EntityLoadFailedException : Exception

Constructors

EntityLoadFailedException()

Creates a new instance of the EntityLoadFailedException type.

Declaration
public EntityLoadFailedException()

EntityLoadFailedException(SerializationInfo, StreamingContext)

Creates a new instance of the EntityLoadFailedException type from serialized state.

Declaration
protected EntityLoadFailedException(SerializationInfo info, StreamingContext context)
Parameters
Type Name Description
System.Runtime.Serialization.SerializationInfo info

Serialization info to obtain the exception data from.

System.Runtime.Serialization.StreamingContext context

Streaming context to obtain the exception data from.

EntityLoadFailedException(String)

Creates a new EntityLoadFailedException instance with the specified message.

Declaration
public EntityLoadFailedException(string message)
Parameters
Type Name Description
System.String message

The message on the exception.

EntityLoadFailedException(String, Exception)

Creates a new EntityLoadFailedException instance with the specified message and the specified innerException.

Declaration
public EntityLoadFailedException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The message on the exception.

System.Exception innerException

The inner exception.

EntityLoadFailedException(Uri, ReactiveEntityKind)

Creates a new instance of the EntityLoadFailedException type for the entity with the specified URI and entity kind.

Declaration
public EntityLoadFailedException(Uri uri, ReactiveEntityKind type)
Parameters
Type Name Description
System.Uri uri

URI identifying the entity that failed to be loaded.

ReactiveEntityKind type

Reactive entity kind of the entity that failed to be loaded.

EntityLoadFailedException(Uri, ReactiveEntityKind, Exception)

Creates a new instance of the EntityLoadFailedException type for the entity with the specified URI and entity kind, including an inner exception.

Declaration
public EntityLoadFailedException(Uri uri, ReactiveEntityKind type, Exception inner)
Parameters
Type Name Description
System.Uri uri

URI identifying the entity that failed to be loaded.

ReactiveEntityKind type

Reactive entity kind of the entity that failed to be loaded.

System.Exception inner

Exception that caused the entity save failure.

Properties

EntityType

Gets the reactive entity kind of the entity that failed to be loaded.

Declaration
public ReactiveEntityKind EntityType { get; }
Property Value
Type Description
ReactiveEntityKind

EntityUri

Gets URI identifying the entity that failed to be loaded.

Declaration
public Uri EntityUri { get; }
Property Value
Type Description
System.Uri

Methods

GetObjectData(SerializationInfo, StreamingContext)

Sets the System.Runtime.Serialization.SerializationInfo object with the parameter name and additional exception information.

Declaration
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
Type Name Description
System.Runtime.Serialization.SerializationInfo info

The object that holds the serialized object data.

System.Runtime.Serialization.StreamingContext context

The contextual information about the source or destination.

In This Article
Back to top Generated by DocFX