Table of Contents

Class InitializePlugIn<TDep1, TDep2, TDep3, TDep4>

Namespace
Acuit.Pinpoint.Modularity
Assembly
Acuit.Pinpoint.Modularity.Abstractions.dll

Implementation of IInitializePlugIn.

public class InitializePlugIn<TDep1, TDep2, TDep3, TDep4> : IInitializePlugIn where TDep1 : class where TDep2 : class where TDep3 : class where TDep4 : class

Type Parameters

TDep1

First dependency type.

TDep2

Second dependency type.

TDep3

Third dependency type.

TDep4

Fourth dependency type.

Inheritance
InitializePlugIn<TDep1, TDep2, TDep3, TDep4>
Implements
Inherited Members

Constructors

InitializePlugIn(TDep1, TDep2, TDep3, TDep4, Action<TDep1, TDep2, TDep3, TDep4>?)

Initializes a new instance of InitializePlugIn<TDep1, TDep2, TDep3, TDep4>.

public InitializePlugIn(TDep1 dependency1, TDep2 dependency2, TDep3 dependency3, TDep4 dependency4, Action<TDep1, TDep2, TDep3, TDep4>? action)

Parameters

dependency1 TDep1

A dependency.

dependency2 TDep2

A second dependency.

dependency3 TDep3

A third dependency.

dependency4 TDep4

A fourth dependency.

action Action<TDep1, TDep2, TDep3, TDep4>

The action to register.

Properties

Action

Gets the initialize action.

public Action<TDep1, TDep2, TDep3, TDep4>? Action { get; }

Property Value

Action<TDep1, TDep2, TDep3, TDep4>

Dependency1

Gets the first dependency.

public TDep1 Dependency1 { get; }

Property Value

TDep1

Dependency2

Gets the second dependency.

public TDep2 Dependency2 { get; }

Property Value

TDep2

Dependency3

Gets the third dependency.

public TDep3 Dependency3 { get; }

Property Value

TDep3

Dependency4

Gets the fourth dependency.

public TDep4 Dependency4 { get; }

Property Value

TDep4

Methods

Initialize(PlugInHostContext)

Performs plug-in initialization.

public void Initialize(PlugInHostContext hostContext)

Parameters

hostContext PlugInHostContext

Context about the plug-in host environment.