Entry Event

Fired once for each entry retrieved.

Syntax

ANSI (Cross Platform)
virtual int FireEntry(ODataEntryEventParams *e);
typedef struct {
const char *Id;
const char *Title;
const char *Summary;
const char *ETag; int reserved; } ODataEntryEventParams; Unicode (Windows) virtual INT FireEntry(ODataEntryEventParams *e);
typedef struct {
LPCWSTR Id;
LPCWSTR Title;
LPCWSTR Summary;
LPCWSTR ETag; INT reserved; } ODataEntryEventParams;
- (void)onEntry:(NSString*)id :(NSString*)title :(NSString*)summary :(NSString*)ETag;
#define EID_ODATA_ENTRY 5

virtual INT IPWORKS_CALL FireEntry(LPSTR &lpszId, LPSTR &lpszTitle, LPSTR &lpszSummary, LPSTR &lpszETag);

Remarks

The Entry event is fired once for each entry found in the response.

The entry properties are provided through EntryProperties.

The entry links are provided through EntryLinks.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]