StartElement Event

Fired when a new element is encountered in the document.

Syntax

ANSI (Cross Platform)
virtual int FireStartElement(JSONStartElementEventParams *e);
typedef struct {
const char *Element; int reserved; } JSONStartElementEventParams; Unicode (Windows) virtual INT FireStartElement(JSONStartElementEventParams *e);
typedef struct {
LPCWSTR Element; INT reserved; } JSONStartElementEventParams;
- (void)onStartElement:(NSString*)element;
#define EID_JSON_STARTELEMENT 8

virtual INT IPWORKS_CALL FireStartElement(LPSTR &lpszElement);

Remarks

The StartElement event is fired when a new element is found in the document.

The element name is provided through the Element parameter.

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