Progress.Json.ObjectModel.ObjectModelParser class
This class is used to parse multiple sources of JSON streams.
Serializable:
Yes
Constructors
PUBLIC ObjectModelParser( )
|
Super Class
Interfaces
This class does not implement an interface.
Public Properties
This class does not define properties.
Public Methods
Public Events
This class does not contain events.
Notes
The following example creates a parser and then parses JSON from the WebSpeed input stream:
DEFINE VARIABLE myParser AS ObjectModelParser NO-UNDO.
DEFINE VARIABLE myConstruct AS JsonConstruct NO-UNDO.
. . .
myParser = NEW ObjectModelParser( ).
myConstruct = myParser:Parse(&WEBSTREAM).
|