SerializerTEndDeserialize Method |
Waits for the pending asynchronous deserialize operation to complete. If an exception was thrown during the execution of the
asynchronous operation, it is rethrown when invoking this method.
Namespace:
Enkoni.Framework.Serialization
Assembly:
Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntaxpublic ICollection<T> EndDeserialize(
IAsyncResult asyncResult
)
Public Function EndDeserialize (
asyncResult As IAsyncResult
) As ICollection(Of T)
public:
ICollection<T>^ EndDeserialize(
IAsyncResult^ asyncResult
)
member EndDeserialize :
asyncResult : IAsyncResult -> ICollection<'T>
Parameters
- asyncResult
- Type: SystemIAsyncResult
The reference to the pending asynchronous request to wait for.
Return Value
Type:
ICollectionTThe items that were deserialized from the file or stream.
See Also