SoapParameter Class Reference

Defines a class used to pass parameter information to create a SOAP envelope.

Inherits from NSObject*

Properties

name

The name of the parameter,

@property (nonatomic, retain) NSString* name

value

The value of the parameter.

@property (nonatomic, retain) id value

null

Determines if the parameter value is null. (Read Only)

@property (readonly) BOOL null

xml

The serialized XML of the parameter.

@property (nonatomic, retain, readonly) NSString* xml

Instance methods

initWithValue:forName:

Initializes the parameter with the specified name and value.

-(id)initWithValue:(id)value forName: (NSString*) name

Parameters

value
The value of the parameter.
name
The name of the parameter.