EvalEntity Event

Fired every time an entity needs to be evaluated.

Syntax

ANSI (Cross Platform)
virtual int FireEvalEntity(RESTEvalEntityEventParams *e);
typedef struct {
const char *Entity;
char *Value; int reserved; } RESTEvalEntityEventParams; Unicode (Windows) virtual INT FireEvalEntity(RESTEvalEntityEventParams *e);
typedef struct {
LPCWSTR Entity;
LPWSTR Value; INT reserved; } RESTEvalEntityEventParams;
- (void)onEvalEntity:(NSString*)entity :(NSString**)value;
#define EID_REST_EVALENTITY 10

virtual INT IPWORKS_CALL FireEvalEntity(LPSTR &lpszEntity, LPSTR &lpszValue);

Remarks

The Value parameter contains a suggested value for the entity (normally the entity name itself). You may set Value to a value of your choice, which will be later passed into the text stream.

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