API:REST.Backend.ServiceComponents.TCustomBackendPush.TExtrasCollection.GetEnumerator

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetEnumerator: TEnumerator;

C++

HIDESBASE TEnumerator* __fastcall GetEnumerator();

Properties

Type Visibility Source Unit Parent
function public
REST.Backend.ServiceComponents.pas
REST.Backend.ServiceComponents.hpp
REST.Backend.ServiceComponents TExtrasCollection

Description

Returns a TCollection enumerator.

REST.Backend.ServiceComponents.TCustomBackendPush.TExtrasCollection.GetEnumerator inherits from System.Classes.TCollection.GetEnumerator. All content below this line refers to System.Classes.TCollection.GetEnumerator.

Returns a TCollection enumerator.

GetEnumerator returns a TCollectionEnumerator reference, which enumerates all items in the collection.

To do so, call the TCollectionEnumerator GetCurrent method within a While MoveNext do loop.

See Also