IEnumString.RemoteNext(UInt32, String, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a specified number of items in the enumeration sequence.
public:
void RemoteNext(System::UInt32 celt, [Runtime::InteropServices::Out] System::String ^ % rgelt, [Runtime::InteropServices::Out] System::UInt32 % pceltFetched);
public void RemoteNext (uint celt, out string rgelt, out uint pceltFetched);
abstract member RemoteNext : uint32 * * -> unit
Public Sub RemoteNext (celt As UInteger, ByRef rgelt As String, ByRef pceltFetched As UInteger)
Parameters
- celt
- UInt32
The number of string values being requested.
- rgelt
- String
An array of size celt
(or larger) of the string values.
- pceltFetched
- UInt32
A pointer to the number of elements actually supplied in rgelt
. Caller can pass in NULL if celt
is one.
Remarks
Returns S_OK if the number of elements supplied is celt
; S_FALSE otherwise.