Class PluginLoadExceptionEventArgs
EventArgs class for the PluginLoadException event.
Inherited Members
Namespace: SdlSdl.CorePluginFramework
Assembly: Sdl.Core.PluginFramework.dll
Syntax
public class PluginLoadExceptionEventArgs : EventArgs
Constructors
PluginLoadExceptionEventArgs(IPluginDescriptor, Exception)
Initializes a new instance of the PluginLoadExceptionEventArgs class.
Declaration
public PluginLoadExceptionEventArgs(IPluginDescriptor pluginDescriptor, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
IPluginDescriptor | pluginDescriptor | The plug-in descriptor of the plug-in that failed to load. |
Exception | exception | The exception that occurred while loading the plug-in. |
Properties
Exception
Gets the exception that occurred when loading the plug-in.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception |
PluginDescriptor
Gets the plug-in descriptor of the plug-in that failed to load.
Declaration
public IPluginDescriptor PluginDescriptor { get; }
Property Value
Type | Description |
---|---|
IPluginDescriptor |