IsolatedStorageFileStream.Write Method
Writes a block of bytes to the IsolatedStorageFileStream object using data read from a byte array.
Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll)
[SecuritySafeCriticalAttribute] public override void Write( byte[] buffer, int offset, int count )
Parameters
- buffer
- Type: System.Byte[]
The buffer to write.
- offset
- Type: System.Int32
The byte offset in buffer from which to begin.
- count
- Type: System.Int32
The maximum number of bytes to write.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- The write attempt exceeds the quota for the IsolatedStorageFileStream object. -or- Isolated storage is disabled. |
| ArgumentException | offset and count describe an invalid range in buffer. |
| ArgumentNullException | buffer is null. |
| ArgumentOutOfRangeException | offset or count is negative. |
| IOException | The stream is closed or an internal error has occurred. -or- Another thread may have caused an unexpected change in the position of the operating system’s file handle. |
| NotSupportedException | The stream does not support writing. |
| ObjectDisposedException | The stream has been disposed. |
The offset parameter gives the offset of the byte in the buffer at which to begin reading, and the count parameter gives the number of bytes that will be written to this IsolatedStorageFileStream object. If the write operation is successful, the current position of the IsolatedStorageFileStream object is advanced by the number of bytes written. If an exception occurs, the current position of the IsolatedStorageFileStream object is unchanged.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.