Skip to content

Commit 42a5088

Browse files
committed
- docs
1 parent d2f1905 commit 42a5088

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The `DefaultSerializer` makes use of the standard .NET xml serialization functio
1414

1515
``` c#
1616
Stream Serialize(object message);
17+
Task<Stream> SerializeAsync(object message);
1718
```
1819

1920
Returns the message `object` as a `Stream`.
@@ -22,9 +23,10 @@ Returns the message `object` as a `Stream`.
2223

2324
``` c#
2425
object Deserialize(Type type, Stream stream);
26+
Task<object> DeserializeAsync(Type type, Stream stream);
2527
```
2628

27-
Deserializes the `Stream` into an `obejct` of the given type.
29+
Deserializes the `Stream` into an `object` of the given type.
2830

2931
# ISerializerRootType
3032

0 commit comments

Comments
 (0)