Class StreamBinaryMapper
Inheritance
StreamBinaryMapper
Assembly: BinaryMapper.Core.dll
Syntax
public sealed class StreamBinaryMapper : object, IStreamBinaryMapper
Methods
|
Improve this Doc
View Source
ReadArray(Stream, UInt32, Type)
Declaration
public Array ReadArray(Stream stream, uint length, Type type)
Parameters
| Type |
Name |
Description |
| Stream |
stream |
|
| System.UInt32 |
length |
|
| Type |
type |
|
Returns
|
Improve this Doc
View Source
ReadArray<TObject>(Stream, UInt32)
Declaration
public TObject[] ReadArray<TObject>(Stream stream, uint length)
Parameters
Returns
| Type |
Description |
| TObject[] |
|
Type Parameters
|
Improve this Doc
View Source
ReadObject(Stream, Type)
Declaration
public object ReadObject(Stream stream, Type type)
Parameters
| Type |
Name |
Description |
| Stream |
stream |
|
| Type |
type |
|
Returns
|
Improve this Doc
View Source
ReadObject<TObject>(Stream)
Declaration
public TObject ReadObject<TObject>(Stream stream)
Parameters
| Type |
Name |
Description |
| Stream |
stream |
|
Returns
Type Parameters
|
Improve this Doc
View Source
ReadValue(Stream, Type)
Declaration
public object ReadValue(Stream stream, Type type)
Parameters
| Type |
Name |
Description |
| Stream |
stream |
|
| Type |
type |
|
Returns
|
Improve this Doc
View Source
ReadValue<TValue>(Stream)
Declaration
public TValue ReadValue<TValue>(Stream stream)
Parameters
| Type |
Name |
Description |
| Stream |
stream |
|
Returns
Type Parameters
Implements