AddIns Interface

Definition

Caution

AddIn related extension points are no longer supported in Visual Studio.

Contains all known add-ins.

public interface class AddIns : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("50590801-D13E-4404-80C2-5CA30A4D0EE8")]
[System.Runtime.InteropServices.TypeLibType(4160)]
public interface AddIns : System.Collections.IEnumerable
[System.Runtime.InteropServices.Guid("50590801-D13E-4404-80C2-5CA30A4D0EE8")]
[System.Obsolete("AddIn related extension points are no longer supported in Visual Studio.")]
public interface AddIns : System.Collections.IEnumerable
[<System.Runtime.InteropServices.Guid("50590801-D13E-4404-80C2-5CA30A4D0EE8")>]
[<System.Runtime.InteropServices.TypeLibType(4160)>]
type AddIns = interface
    interface IEnumerable
[<System.Runtime.InteropServices.Guid("50590801-D13E-4404-80C2-5CA30A4D0EE8")>]
[<System.Obsolete("AddIn related extension points are no longer supported in Visual Studio.")>]
type AddIns = interface
    interface IEnumerable
Public Interface AddIns
Implements IEnumerable
Attributes
Implements

Remarks

Add-ins are now deprecated. For more information, see FAQ: Converting Add-ins to VSPackage Extensions.

Properties

Count

Gets the number of objects in the AddIns collection.

DTE

Gets the top-level extensibility object.

Parent

Gets the immediate parent object of a AddIns collection.

Methods

Add(String, String, String, Boolean)

Adds an add-in to the collection of add-ins loaded when a particular solution loads. It fails if the collection is the DTE.AddIns collection.

GetEnumerator()

Gets an enumerator for items in the collection.

Item(Object)

Returns an AddIn object in an AddIns collection.

Update()

Updates the collection.

Applies to