Show / Hide Table of Contents

Class AsyncError

Marker that will be passed to your callback in the event that an async error occurs, provides access to the error and any state that you passed in originally.

Inheritance
object
AsyncError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public class AsyncError

Constructors

| Edit this page View Source

AsyncError(Exception, object)

Creates new async error.

Declaration
public AsyncError(Exception ex, object state)
Parameters
Type Name Description
Exception ex

Exception.

object state

State.

Properties

| Edit this page View Source

Error

Gets the error that occurred.

Declaration
public Exception Error { get; }
Property Value
Type Description
Exception
| Edit this page View Source

State

Gets the original state that was passed in to the async call.

Declaration
public object State { get; }
Property Value
Type Description
object

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Constructors
    • AsyncError(Exception, object)
  • Properties
    • Error
    • State
  • Extension Methods
Back to top Generated by DocFX