.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)
The deserializer
E41516-01
Creates a
for reading objects from
the given stream.
Namespace: Org.IdentityConnectors.Framework.Common.Serializer![]() | |
---|---|
BinaryObjectDeserializer |
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: BinaryObjectDeserializerThe 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.