Search Results for

    Show / Hide Table of Contents

    Delegate PluginInitializedCallback

    Callback delegate for the InitializePluginAsync(IEnumerable<IPlugin>) call.

    Namespace: Sdl.Core.PluginFramework
    Assembly: Sdl.Core.PluginFramework.dll
    Syntax
    public delegate void PluginInitializedCallback(IPlugin plugin, Exception error)
    Parameters
    Type Name Description
    IPlugin plugin

    The plug-in for which initialization was attempted.

    Exception error

    If initialization failed, the exception that occurred during initialization.

    Constructors

    PluginInitializedCallback(object, IntPtr)

    Declaration
    public PluginInitializedCallback(object @object, IntPtr method)
    Parameters
    Type Name Description
    object object
    IntPtr method

    Methods

    BeginInvoke(IPlugin, Exception, AsyncCallback, object)

    Declaration
    public virtual IAsyncResult BeginInvoke(IPlugin plugin, Exception error, AsyncCallback callback, object @object)
    Parameters
    Type Name Description
    IPlugin plugin
    Exception error
    AsyncCallback callback
    object object
    Returns
    Type Description
    IAsyncResult

    EndInvoke(IAsyncResult)

    Declaration
    public virtual void EndInvoke(IAsyncResult result)
    Parameters
    Type Name Description
    IAsyncResult result

    Invoke(IPlugin, Exception)

    Declaration
    public virtual void Invoke(IPlugin plugin, Exception error)
    Parameters
    Type Name Description
    IPlugin plugin
    Exception error
    In this article
    • Constructors
      • PluginInitializedCallback(object, IntPtr)
    • Methods
      • BeginInvoke(IPlugin, Exception, AsyncCallback, object)
      • EndInvoke(IAsyncResult)
      • Invoke(IPlugin, Exception)
    Back to top Generated by DocFX