SerializerTBeginDeserialize Method (Stream, AsyncCallback, Object) |
Begins to deserialize the objects from the specified stream using a default encoding.
Namespace:
Enkoni.Framework.Serialization
Assembly:
Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntaxpublic IAsyncResult BeginDeserialize(
Stream stream,
AsyncCallback callback,
Object state
)
Public Function BeginDeserialize (
stream As Stream,
callback As AsyncCallback,
state As Object
) As IAsyncResult
public:
IAsyncResult^ BeginDeserialize(
Stream^ stream,
AsyncCallback^ callback,
Object^ state
)
member BeginDeserialize :
stream : Stream *
callback : AsyncCallback *
state : Object -> IAsyncResult
Parameters
- stream
- Type: System.IOStream
The stream to which the objects must be serialized. - 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