SerializerTBeginDeserialize Method (Stream, Encoding, AsyncCallback, Object) | 
 Begins to deserialize the objects from the specified stream using the specified encoding.
 
    Namespace: 
   Enkoni.Framework.Serialization
    Assembly:
   Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntaxpublic IAsyncResult BeginDeserialize(
	Stream stream,
	Encoding encoding,
	AsyncCallback callback,
	Object state
)
Public Function BeginDeserialize ( 
	stream As Stream,
	encoding As Encoding,
	callback As AsyncCallback,
	state As Object
) As IAsyncResult
public:
IAsyncResult^ BeginDeserialize(
	Stream^ stream, 
	Encoding^ encoding, 
	AsyncCallback^ callback, 
	Object^ state
)
member BeginDeserialize : 
        stream : Stream * 
        encoding : Encoding * 
        callback : AsyncCallback * 
        state : Object -> IAsyncResult 
Parameters
- stream
 - Type: System.IOStream
The stream to which the objects must be serialized. - encoding
 - Type: System.TextEncoding
The encoding that must be used to serialize the data. - callback
 - Type: SystemAsyncCallback
The method to be called when the asynchronous operation is completed. - state
 - Type: SystemObject
A user-provided object that distinguishes this particular asynchronous request from other requests. 
Return Value
Type: 
IAsyncResultAn 
IAsyncResult that references the asynchronous operation.
See Also