BinaryImageParserBaseRead(Byte, Int32, Int32) Method
The parser is designed as a write only stream, so this method is not implemented.
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public override int Read(
byte[] buffer,
int offset,
int count
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Overrides Function Read (
buffer As Byte(),
offset As Integer,
count As Integer
) As Integer
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
virtual int Read(
array<unsigned char>^ buffer,
int offset,
int count
) override
function Read(buffer, offset, count);
- buffer Byte
- Array of Bytes.
- offset Int32
- An Int32 value for the count.
- count Int32
- An Int32 value for the offset.
Int32An
Int32 as the number of bytes read. Well. It would, if implemented.
NotImplementedException | Cannot read from WriteOnly stream. |