SDMOpenSearchDescriptionXMLParser class

Deprecated. 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 SDMOpenSearchDescriptionXMLParser : SDMGenericParser

Members

All members of SDMOpenSearchDescriptionXMLParser, including inherited members.

Methods
Method Description
- (id) init  
Inherited members from SDMGenericParser

Usage

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