Class JsonRegistry<TKey, TValue>.LoadErrorEventArgs
Provides data for the LoadFailed event.
Inherited Members
Namespace: SlugBase
Assembly: SlugBase.dll
Syntax
public class JsonRegistry<TKey, TValue>.LoadErrorEventArgs : EventArgs
Properties
View SourceErrorMessage
An error message that may be shown to the user.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
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 |
---|---|
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 |
---|---|
string |