ICoreFragmentInspector::NextCoreFragments

Returns the next ICoreFragment objects in the knowledge, if they are available.


HRESULT NextCoreFragments(
  ULONG requestedCount,
  ICoreFragment** ppiCoreFragments,
  ULONG* pFetchedCount);

requestedCount

[in] The number of ICoreFragment objects to retrieve.

ppiCoreFragments

[out, size_is(requestedCount), length_is(*pFetchedCount)] Returns the next pFetchedCount ICoreFragment objects.

pFetchedCount

[in, out] Returns the number of ICoreFragment objects that were retrieved. This value can be NULL only if requestedCount is 1.

  • S_OK

  • S_FALSE if there are no more ICoreFragment objects to retrieve, or if the number of ICoreFragment objects retrieved is less than requestedCount.

  • E_POINTER

  • SYNC_E_INVALID_OPERATION if the knowledge object that is contained in this object has changed since this object was created.

Show: