We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f1905 commit 42a5088Copy full SHA for 42a5088
1 file changed
README.md
@@ -14,6 +14,7 @@ The `DefaultSerializer` makes use of the standard .NET xml serialization functio
14
15
``` c#
16
Stream Serialize(object message);
17
+Task<Stream> SerializeAsync(object message);
18
```
19
20
Returns the message `object` as a `Stream`.
@@ -22,9 +23,10 @@ Returns the message `object` as a `Stream`.
22
23
24
25
object Deserialize(Type type, Stream stream);
26
+Task<object> DeserializeAsync(Type type, Stream stream);
27
28
-Deserializes the `Stream` into an `obejct` of the given type.
29
+Deserializes the `Stream` into an `object` of the given type.
30
31
# ISerializerRootType
32
0 commit comments