The SoapDictionary class is a base class of dictionary objects. It is not in itself an dictionary, but proxies to the items property.
Inherits from NSMutableDictionary*.
For more about Objective-C properties, see “Properties” in The Objective-C Programming Language.
Provides access to the dictionary of deserialized objects.
@property (retain, nonatomic) NSMutableDictionary* items
Initializes the dictionary and returns it.
- (id) initWithNode: (CXMLNode*) node
Creates a new dictionary from the node.
+ (id) createWithNode: (CXMLNode*) node
Serializes a string to an dictionary.
+ (NSMutableString*) serialize: (NSDictionary*) dictionary