IsolatedStorageFileStream.Position プロパティ
IsolatedStorageFileStream の現在位置を取得するか、指定した値に設定します。
Overrides Public Property Position As Long
[C#]
public override long Position {get; set;}
[C++]
public: __property __int64 get_Position();public: __property void set_Position(__int64);
[JScript]
public override function get Position() : long;public override function set Position(long);
プロパティ値
IsolatedStorageFileStream の現在位置。
例外
例外の種類 | 条件 |
---|---|
ArgumentOutOfRangeException | 負数を使用して位置を設定することはできません。 |
解説
このプロパティの設定は、 CanSeek プロパティが true の場合に有効になります。
使用例
Console.WriteLine("Writing data to the new file.")
While source.Position < source.Length
inputChar = CByte(source.ReadByte())
target.WriteByte(inputChar)
End While
' Determine the size of the IsolatedStorageFileStream
' by checking its Length property.
Console.WriteLine(("Total Bytes Read: " & source.Length))
[C#]
Console.WriteLine("Writing data to the new file.");
while (source.Position < source.Length)
{
inputChar = (byte)source.ReadByte();
target.WriteByte(inputChar);
}
// Determine the size of the IsolatedStorageFileStream
// by checking its Length property.
Console.WriteLine("Total Bytes Read: " + source.Length);
[C++]
Console::WriteLine(S"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(S"Total Bytes Read: {0}", source->Length.ToString());
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
IsolatedStorageFileStream クラス | IsolatedStorageFileStream メンバ | System.IO.IsolatedStorage 名前空間