Kaspersky Security Center Automation
10.0
|
import "klakaut.idl";
Public Member Functions |
|
HRESULT | GetChunk ([in] long lStart,[in] long lCount,[out, retval] IKlAkCollection **ppData) |
Properties |
|
VARIANT |
Item ([in] long index) [get] |
long |
Count [get] |
Large server-side collection.
Large server-resident collection typically returned by search
functions. Collection may be enumerated, see JScript sample
below.
// var oChunkAccessor = ... // ... var enumObj = new Enumerator(oChunkAccessor); for (;!enumObj.atEnd();enumObj.moveNext()) { var oObj = enumObj.item(); //process item oObj //... };