RequestE3Info.getNextPageKeys Method
Get the next page keys as returned by AADE.
You can use these keys to initiate a new E3 Info search.
Public Function getNextPageKeys() As String()
This language is not supported or no code example is available.
public string[] getNextPageKeys()
This language is not supported or no code example is available.
Return Value
string[]
string[] npk = rvi.getNextPageKeys;
while (!(string.IsNullOrEmpty(npk[0]) | string.IsNullOrEmpty(npk[1])))
rvi.Request(5, SearchParam, npk, true, true);
This language is not supported or no code example is available.
Dim npk As String() = rvi.getNextPageKeys
While Not (npk(0) = "" Or npk(1) = "")
rvi.Request(5, SearchParam, npk, True, True)
End While
This language is not supported or no code example is available.
.NET Framework
Supported in: 3.5 or newer