Class JsonRegistry<TKey, TValue>.LoadErrorEventArgs
Provides data for the LoadFailed event.
Inheritance
System.Object
System.EventArgs
JsonRegistry<TKey, TValue>.LoadErrorEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SlugBase
Assembly: SlugBase.dll
Syntax
public class LoadErrorEventArgs : EventArgs
Properties
ErrorMessage
An error message that may be shown to the user.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
System.String |
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 |
---|---|
System.Exception |
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 |
---|---|
System.String |