Serializes a record set.
object.wddxSerialize(serializer)
| Parameter | Description | 
|---|---|
| 
 object  | 
    
 Instance name of the WddxRecordset object  | 
  
| 
 serializer  | 
    
 WddxSerializer instance  | 
  
Returns a Boolean True if serialization was successful; False, otherwise.
This is an internal function; you do not typically call it.
This example is from the WddxSerializer serializeValue function:
...
else if (typeof(obj) == "object")
{
if (obj == null)
{
// Null values become empty strings
this.write("<string></string>");
}
else if (typeof(obj.wddxSerialize) == "function")
{
// Object knows how to serialize itself
bSuccess = obj.wddxSerialize(this);
}
...