Méthode | Description | |
---|---|---|
ClientSerializer ( |
Constructor to set type
|
|
IsStartObject ( System reader ) : bool |
IsStartObject returns true if the object found in the read can be deserialized. We use CanDeserialize to get the answer.
|
|
ReadObject ( System reader, bool verifyObjectName ) : object |
ReadObject is used to read and object from the reader. Deserialize will do the work.
|
|
WriteEndObject ( System writer ) : void |
WriteEndObject is used to close up the object. Since the XMLSerialzer does all the work, nothing is needed here.
|
|
WriteObjectContent ( System writer, object graph ) : void |
WriteObjectContent is called to serialze the object to writer. Serialze will do the work here.
|
|
WriteStartObject ( System writer, object graph ) : void |
WriteStartObject is used to start off the object. Since the XMLSerialzer does all the work, nothing is needed here.
|
public ClientSerializer ( |
||
type | ||
Résultat | System |
public IsStartObject ( System reader ) : bool | ||
reader | System | |
Résultat | bool |
public ReadObject ( System reader, bool verifyObjectName ) : object | ||
reader | System | |
verifyObjectName | bool | |
Résultat | object |
public WriteEndObject ( System writer ) : void | ||
writer | System | |
Résultat | void |
public WriteObjectContent ( System writer, object graph ) : void | ||
writer | System | |
graph | object | |
Résultat | void |
public WriteStartObject ( System writer, object graph ) : void | ||
writer | System | |
graph | object | |
Résultat | void |