Reads back compressed data from the specified file.

Namespace:  GrassValley.Mseries.AppServer
Assembly:  GrassValley.Mseries.AppServer (in GrassValley.Mseries.AppServer.dll) Version: 1.0.0.0

Syntax

C#
byte[] Read(
	string filepath,
	int start,
	int length,
	out int lengthReturned
)
Visual Basic (Declaration)
Function Read ( _
	filepath As String, _
	start As Integer, _
	length As Integer, _
	<OutAttribute> ByRef lengthReturned As Integer _
) As Byte()
Visual C++
array<unsigned char>^ Read(
	String^ filepath, 
	int start, 
	int length, 
	[OutAttribute] int% lengthReturned
)

Parameters

filepath
Type: System..::.String
The filepath.
start
Type: System..::.Int32
The start position of where to start reading back data.
length
Type: System..::.Int32
Amount of data to read back.
lengthReturned
Type: System..::.Int32 %
The amount of data actually read back.

Return Value

compressed data in byte array

See Also