The IDs of IAddOn objects superseded by this IAddOn.

Although present on the IAddOn object and, by inheritance, the IUpgradeAddOn object, this property has no use on the IUpgradeAddOn object..

A newer version IAddOn must specify in this property the IDs of the prior version IAddOn objects that it functionally replaces, allowing an application with a dependency on that replaced (superseded) functionality to determine whether the functionality is available through the superseding IAddOn. (See also the IsAddOnInstalled helper method.)


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property SupersededAddOnIds As IIdList
C#
IIdList SupersededAddOnIds { get; set; }
C++
property IIdList SupersededAddOnIds abstract  {
    IIdList get();
    void set(IIdList value);
}
J#
/** property */
public IIdList get_SupersededAddOnIds();

/** property */
public void set_SupersededAddOnIds(IIdList value);
JScript
public function get SupersededAddOnIds() : IIdList

public function set SupersededAddOnIds(value : IIdList);

Remarks

See Also