| Name | Description |
---|
 | Write(array<Boolean>[]()[][]) |
Writes a Boolean[] into the stream.
Notes:
A null or empty array will take 1 byte.
Calls WriteOptimized(Boolean[]).
|
 | Write(array<Byte>[]()[][]) |
Writes a Byte[] into the stream.
Notes:
A null or empty array will take 1 byte.
(Overrides BinaryWriter..::..Write(array<Byte>[]()[][]).) |
 | Write(array<Char>[]()[][]) |
Writes a Char[] into the stream.
Notes:
A null or empty array will take 1 byte.
(Overrides BinaryWriter..::..Write(array<Char>[]()[][]).) |
 | Write(ArrayList) |
Writes an ArrayList into the stream using the fewest number of bytes possible.
Stored Size: 1 byte upwards depending on data content
Notes:
A null Arraylist takes 1 byte.
An empty ArrayList takes 2 bytes.
The contents are stored using WriteOptimized(ArrayList) which should be used
if the ArrayList is guaranteed never to be null.
|
 | Write(BitArray) |
Writes a BitArray value into the stream using the fewest number of bytes possible.
Stored Size: 1 byte upwards depending on data content
Notes:
A null BitArray takes 1 byte.
An empty BitArray takes 2 bytes.
|
 | Write<(Of <<'(K, V>)>>)(Dictionary<(Of <<'(K, V>)>>)) |
Writes a non-null generic Dictionary into the stream.
|
 | Write<(Of <<'(T>)>>)(List<(Of <<'(T>)>>)) |
Writes a non-null generic List into the stream.
|
 | Write(BitVector32) |
Writes a BitVector32 into the stream.
Stored Size: 4 bytes.
|
 | Write(DateTime) |
Writes a DateTime value into the stream.
Stored Size: 8 bytes
|
 | Write(array<DateTime>[]()[][]) |
Writes a DateTime[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<Decimal>[]()[][]) |
Writes a Decimal[] into the stream.
Notes:
A null or empty array will take 1 byte.
Calls WriteOptimized(Decimal[]).
|
 | Write(array<Double>[]()[][]) |
Writes a Double[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(Guid) |
Writes a Guid into the stream.
Stored Size: 16 bytes.
|
 | Write(array<Guid>[]()[][]) |
Writes a Guid[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<Int16>[]()[][]) |
Writes an Int16[]or a null into the stream.
Notes:
A null or empty array will take 1 byte.
Calls WriteOptimized(decimal[]).
|
 | Write(array<Int32>[]()[][]) |
Writes an Int32[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<Int64>[]()[][]) |
Writes an Int64[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<Object>[]()[][]) |
Writes an object[] into the stream.
Stored Size: 2 bytes upwards depending on data content
Notes:
A null object[] takes 1 byte.
An empty object[] takes 2 bytes.
The contents of the array will be stored optimized.
|
 | Write(array<SByte>[]()[][]) |
Writes an SByte[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<Single>[]()[][]) |
Writes a Single[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(String) |
Calls WriteOptimized(string).
This override to hide base BinaryWriter.Write(string).
(Overrides BinaryWriter..::..Write(String).) |
 | Write(TimeSpan) |
Writes a TimeSpan value into the stream.
Stored Size: 8 bytes
|
 | Write(array<TimeSpan>[]()[][]) |
Writes a TimeSpan[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<UInt16>[]()[][]) |
Writes a UInt16[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<UInt32>[]()[][]) |
Writes a UInt32[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(array<UInt64>[]()[][]) |
Writes a UInt64[] into the stream.
Notes:
A null or empty array will take 1 byte.
|
 | Write(Type, Boolean) |
Stores a Type object into the stream.
Stored Size: Depends on the length of the Type's name and whether the fullyQualified parameter is set.
A null Type takes 1 byte.
|
 | Write(IOwnedDataSerializable, Object) |
Allows any object implementing IOwnedDataSerializable to serialize itself
into this SerializationWriter.
A context may also be used to give the object an indication of what data
to store. As an example, using a BitVector32 gives a list of flags and
the object can conditionally store data depending on those flags.
|