AddInEnvironment Class

Definition

Provides access to the application domain and process of an add-in.

public ref class AddInEnvironment sealed
public sealed class AddInEnvironment
type AddInEnvironment = class
Public NotInheritable Class AddInEnvironment
Inheritance
AddInEnvironment

Remarks

Use this class to load add-ins into a desired environment, which can be one of the following:

  • An existing application domain for which you have the AppDomain object.

  • An application domain that was automatically generated to activate an add-in.

  • An existing external process.

To obtain the AddInEnvironment object for an add-in, pass the add-in's application domain to the AddInEnvironment class constructor. Alternatively, you can use the AddInEnvironment property of the AddInController class to obtain the add-in's AddInEnvironment object.

After you obtain the AddInEnvironment object, you can do the following:

  • Pass that AddInEnvironment object to the appropriate Activate method overload. The add-in will be activated in the application domain and process that is represented by the AddInEnvironment object.

  • Use the Process property to obtain an AddInProcess object. Then pass that object to the appropriate Activate method overload. The add-in will be activated in the process that is represented by the AddInProcess object but in a new application domain.

Constructors

AddInEnvironment(AppDomain)

Initializes a new instance of the AddInEnvironment class.

Properties

Process

Gets the AddInProcess object that represents the process in which the add-in is running.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also