Writes cash data in the storage.

Namespace:  PerpetuumSoft.ReportingServices.Viewer.Client.Utils
Assembly:  PerpetuumSoft.ReportingServices.Viewer.Client (in PerpetuumSoft.ReportingServices.Viewer.Client.dll) Version: 1.0.0.0

Syntax

C#
public static bool SafeWrite(
	IsolatedStorageFile storage,
	IsolatedStorageFileStream stream,
	byte[] buffer,
	int offset,
	int count
)
Visual Basic (Declaration)
Public Shared Function SafeWrite ( _
	storage As IsolatedStorageFile, _
	stream As IsolatedStorageFileStream, _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
) As Boolean
Visual C++
public:
static bool SafeWrite(
	IsolatedStorageFile^ storage, 
	IsolatedStorageFileStream^ stream, 
	array<unsigned char>^ buffer, 
	int offset, 
	int count
)

Parameters

storage
Type: System.IO.IsolatedStorage..::.IsolatedStorageFile
The storage.
stream
Type: System.IO.IsolatedStorage..::.IsolatedStorageFileStream
The stream.
buffer
Type: array< System..::.Byte >[]()[]
The buffer.
offset
Type: System..::.Int32
The offset.
count
Type: System..::.Int32
The count.

Return Value

See Also