SerializerTEndSerialize Method  | 
 Waits for the pending asynchronous serialize 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 int EndSerialize(
	IAsyncResult asyncResult
)
Public Function EndSerialize ( 
	asyncResult As IAsyncResult
) As Integer
public:
int EndSerialize(
	IAsyncResult^ asyncResult
)
member EndSerialize : 
        asyncResult : IAsyncResult -> int 
Parameters
- asyncResult
 - Type: SystemIAsyncResult
The reference to the pending asynchronous request to wait for. 
Return Value
Type: 
Int32The number of bytes that have been written to the file or stream.
See Also