OpenSearchDescriptionXMLParser class

Parses an OpenSearch description document and creates its ObjC representation that can be accessed via the openSearchDescription property of the class instance after parsing.

Syntax

@interface OpenSearchDescriptionXMLParser : ODataGenericParser

Members

All members of OpenSearchDescriptionXMLParser, including inherited members.

Methods
Method Description
- (id) init  

Usage

OpenSearchDescription* osd = nil; { OpenSearchDescriptionXMLParser* osdParser = [[[OpenSearchDescriptionXMLParser alloc] init] autorelease]; [osdParser parse: content_in]; osd = [osdParser.openSearchDescription retain]; } (ODataParserException* e) { //error handling... }