AddInStore.RebuildAddIns(String) Method

Definition

Rebuilds the add-in cache and includes new add-ins from a specified root directory.

public:
 static cli::array <System::String ^> ^ RebuildAddIns(System::String ^ addInsFolderPath);
[System.Security.SecurityCritical]
public static string[] RebuildAddIns (string addInsFolderPath);
[<System.Security.SecurityCritical>]
static member RebuildAddIns : string -> string[]
Public Shared Function RebuildAddIns (addInsFolderPath As String) As String()

Parameters

addInsFolderPath
String

The path of the directory that contains one or more subdirectories of add-ins.

Returns

String[]

A collection of strings that describe warnings as the pipeline segments are evaluated.

Attributes

Exceptions

A segment directory is missing from the pipeline directory structure.

There is an access violation to the pipeline directory structure.

addInsFolderPath is null.

Caller does not have both read and write access permissions to the location that is specified by addInsFolderPath.

Remarks

Call this method if your add-ins are outside the pipeline directory structure.

Use this method only when there may be a problem with the cache and it must be rebuilt. For faster performance, use the UpdateAddIns method.

Applies to

See also