IsolatedStorageFileStream.SetLength Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Sets the length of this IsolatedStorageFileStream object to the specified value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Int64
The new length of the IsolatedStorageFileStream object.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |
| ArgumentOutOfRangeException | Attempted to set the value parameter to less than 0. |
| NotSupportedException | The stream does not support both writing and seeking. |
| IOException | The stream is closed or an internal error has occurred. |
| ObjectDisposedException | The stream has been disposed. |
If the specified value is less than the current length of the IsolatedStorageFileStream object, the stream is truncated. If the specified value is larger than the current length of the stream, the stream is expanded. If the stream is expanded, the contents of the stream between the old and the new length are undefined. In order to use this method, an IsolatedStorageFileStream object must support both writing and seeking.