Search Results for

    Show / Hide Table of Contents

    Class InitializePluginCompletedEventArgs

    Events argument class for plug-in initialization completion events (InitializePluginCompleted), raised during calls to InitializePluginAsync(IEnumerable<IPlugin>).

    Inheritance
    object
    EventArgs
    AsyncCompletedEventArgs
    InitializePluginCompletedEventArgs
    Inherited Members
    AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
    AsyncCompletedEventArgs.Cancelled
    AsyncCompletedEventArgs.Error
    AsyncCompletedEventArgs.UserState
    EventArgs.Empty
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: Sdl.Core.PluginFramework
    Assembly: Sdl.Core.PluginFramework.dll
    Syntax
    public class InitializePluginCompletedEventArgs : AsyncCompletedEventArgs

    Constructors

    InitializePluginCompletedEventArgs(IPlugin, Exception, bool)

    Constructor.

    Declaration
    public InitializePluginCompletedEventArgs(IPlugin plugin, Exception exception, bool canceled)
    Parameters
    Type Name Description
    IPlugin plugin

    The plug-in for which initialization was attempted.

    Exception exception

    If initialization failed, the exception that occurred during initialization.

    bool canceled

    true if initialization was canelled.

    Properties

    Plugin

    Gets the plug-in for which initialization was attempted.

    Declaration
    public IPlugin Plugin { get; }
    Property Value
    Type Description
    IPlugin
    In this article
    • Constructors
      • InitializePluginCompletedEventArgs(IPlugin, Exception, bool)
    • Properties
      • Plugin
    Back to top Generated by DocFX