|   | BinaryImageParserBaseRead Method | 
        
        
            The parser is designed as a write only stream, so this method is not implemented.
            
        
        Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntax[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
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract Read : 
        buffer : byte[] * 
        offset : int * 
        count : int -> int 
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override Read : 
        buffer : byte[] * 
        offset : int * 
        count : int -> int function Read(buffer, offset, count);
Parameters
- buffer  Byte
- Array of Bytes.
- offset  Int32
- An Int32 value for the count.
- count  Int32
- An Int32 value for the offset.
Return Value
Int32An 
Int32 as the number of bytes read. Well. It would, if implemented.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| NotImplementedException | Cannot read from WriteOnly stream. | 
 See Also
See Also