ArcObjects Library Reference  (GeoDatabaseDistributed)    

IGeoDataServer.GetNextResultPortion Method

Gets the next portion of the results.

[Visual Basic 6.0]
Function GetNextResultPortion(
    ByVal desiredRange As IResultPortionInfo _
) As IGDSQueryResultPortion
[Visual Basic .NET]
Public Function GetNextResultPortion ( _
    ByVal desiredRange As IResultPortionInfo _
) As IGDSQueryResultPortion
[C#]
public IGDSQueryResultPortion GetNextResultPortion (
    IResultPortionInfo desiredRange
);
[Java]
public IGDSQueryResultPortion getNextResultPortion (
    IResultPortionInfo desiredRange
)
throws
    IOException,
    AutomationException
[C++]
HRESULT GetNextResultPortion(
  IResultPortionInfo* desiredRange,
  IGDSQueryResultPortion** resultPortion
);
[C++]

Parameters

desiredRange [in]

  desiredRange is a parameter of type IResultPortionInfo

resultPortion [out, retval]

  resultPortion is a parameter of type IGDSQueryResultPortion

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The GetNextResultPortion method is used to query table and feature classes.  This method is used to get additional records after the initial query has been performed using the IGeoDataServer::TableSearch method. 

See Also

IGeoDataServer Interface

Example

TableSearch_vb