Interface IDeserializeUntyped
Represents a class that de-serializes objects from the name of the type.
Namespace: IRM.Messaging
Assembly: IRM.dll
Syntax
public interface IDeserializeUntyped
Methods
Deserialize(Stream, String)
De-serializes an object from a System.IO.Stream.
Declaration
object Deserialize(Stream input, string typeName)
Parameters
System.IO.Stream
input
The stream with the serialized object. |
String
typeName
The full name of the type. |
Returns
Object
The de-serialized object. |