AP&C API Reference
|
A class to manage de/serialization of a generic dictionary. More...
Public Member Functions | |
void | Serialize (Dictionary< K, V > dictionary, XmlWriter serializationStream) |
Serializes the dictionary to an XmlWriter. More... | |
void | Serialize (Dictionary< K, V > dictionary, TextWriter serializationStream) |
Serializes the dictionary to a TextWriter. More... | |
void | Serialize (Dictionary< K, V > dictionary, Stream serializationStream) |
Serializes the dictionary to a Stream. More... | |
Dictionary< K, V > | Deserialize (XmlReader serializationStream) |
Deserializes the dictionary from an XmlWriter. More... | |
Dictionary< K, V > | Deserialize (TextReader serializationStream) |
Deserializes the dictionary from a TextWriter. More... | |
Dictionary< K, V > | Deserialize (Stream serializationStream) |
Deserializes the dictionary from a Stream. More... | |
A class to manage de/serialization of a generic dictionary.
K | The type used for the keys in the dictionary. |
V | The type used for the values in the dictionary. |
|
inline |
Deserializes the dictionary from a Stream.
serializationStream | The stream holding the serialized data. |
|
inline |
Deserializes the dictionary from a TextWriter.
serializationStream | The stream holding the serialized data. |
|
inline |
Deserializes the dictionary from an XmlWriter.
serializationStream | The stream holding the serialized data. |
|
inline |
Serializes the dictionary to a Stream.
dictionary | The dictionary to serialize. |
serializationStream | The stream to put the serialized data into. |
|
inline |
Serializes the dictionary to a TextWriter.
dictionary | The dictionary to serialize. |
serializationStream | The stream to put the serialized data into. |
|
inline |
Serializes the dictionary to an XmlWriter.
dictionary | The dictionary to serialize. |
serializationStream | The stream to put the serialized data into. |