Class PluginErrorEventArgs
- Namespace
- DotCompute.Plugins.Interfaces
- Assembly
- DotCompute.Plugins.dll
Event arguments for plugin errors.
public class PluginErrorEventArgs : EventArgs
- Inheritance
-
PluginErrorEventArgs
- Inherited Members
Constructors
PluginErrorEventArgs(Exception, string, Dictionary<string, object>?)
Event arguments for plugin errors.
public PluginErrorEventArgs(Exception exception, string context, Dictionary<string, object>? additionalData = null)
Parameters
exceptionExceptioncontextstringadditionalDataDictionary<string, object>
Properties
AdditionalData
Gets the additional data.
public Dictionary<string, object> AdditionalData { get; }
Property Value
- Dictionary<string, object>
The additional data.
Context
Gets the context.
public string Context { get; }
Property Value
- string
The context.
Exception
Gets the exception.
public Exception Exception { get; }
Property Value
- Exception
The exception.
Timestamp
Gets the timestamp.
public DateTime Timestamp { get; }
Property Value
- DateTime
The timestamp.