DocFX + Singulink = ♥

Class JsonRegistry<TKey, TValue>.LoadErrorEventArgs

Provides data for the LoadFailed event.

Inheritance
object
EventArgs
JsonRegistry<TKey, TValue>.LoadErrorEventArgs
Inherited Members
EventArgs.Empty
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: SlugBase
Assembly: SlugBase.dll
Syntax
public class JsonRegistry<TKey, TValue>.LoadErrorEventArgs : EventArgs

Properties

View Source

ErrorMessage

An error message that may be shown to the user.

Declaration
public string ErrorMessage { get; }
Property Value
Type Description
string
View Source

Exception

The exception that caused this event, or null if it was not from an exception.

Declaration
public Exception Exception { get; }
Property Value
Type Description
Exception
View Source

Path

The path to the file that errored, or null if it was not loaded from a file.

Declaration
public string Path { get; }
Property Value
Type Description
string