NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

InstallerCollection.RemoveRange

Removes the specified range of installers from the installer collection.

[Visual Basic]
Overridable Public Sub RemoveRange( _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public virtual void RemoveRange(
   int index,
   int count
);
[C++]
public: virtual void RemoveRange(
   int index,
   int count
);
[JScript]
public function RemoveRange(
   index : int,
   count : int
);

Parameters

index
A zero-based index that specifies the beginning of the range of Installers to remove.
count
A value specifying how many Installers to remove, starting with the zero-based index.

See Also

InstallerCollection Class | InstallerCollection Members | System.Configuration.Install Namespace | Add | AddRange | Remove | All | Installer | Parent