The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
IsolatedStorageFileStream::WriteByte Method (Byte)
.NET Framework (current version)
Writes a single byte to the IsolatedStorageFileStream object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System::Byte
The byte value to write to the isolated storage file.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The write attempt exceeds the quota for the IsolatedStorageFileStream object. |
The following code example demonstrates how the WriteByte method can be used to read data from an IsolatedStorageFileStream object. For the complete context of this example, see the IsolatedStorageFileStream overview.
Console::WriteLine( "Writing data to the new file." ); while ( source->Position < source->Length ) { inputChar = (Byte)source->ReadByte(); target->WriteByte( (Byte)source->ReadByte() ); } // Determine the size of the IsolatedStorageFileStream // by checking its Length property. Console::WriteLine( "Total Bytes Read: {0}", source->Length.ToString() );
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: