.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Creates a
 Copy imageCopy
BinaryObjectDeserializer
for reading objects from the given stream.

Namespace: Org.IdentityConnectors.Framework.Common.Serializer
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public abstract BinaryObjectDeserializer NewBinaryDeserializer(
	Stream i
)

Parameters

i
Type: System.IO..::..Stream

Return Value

Type: BinaryObjectDeserializer
The deserializer

Remarks

NOTE: consider using DeserializeBinaryObject(array<Byte>[]()[][]) for convenience deserializing a single object. NOTE2: do not mix and match DeserializeBinaryObject(array<Byte>[]()[][]) with {NewBinarySerializer(Stream). This is unsafe since there is header information and state associated with the stream. Objects written using one method must be read using the proper corresponding method.

See Also