IsolatedStorageFileStream.Position Propriedade
Definição
Obtém ou define a posição atual do objeto IsolatedStorageFileStream atual.Gets or sets the current position of the current IsolatedStorageFileStream object.
public:
virtual property long Position { long get(); void set(long value); };
public override long Position { get; set; }
member this.Position : int64 with get, set
Public Overrides Property Position As Long
Valor da propriedade
A posição atual deste IsolatedStorageFileStream objeto.The current position of this IsolatedStorageFileStream object.
Exceções
A posição não pode ser definida como um número negativo.The position cannot be set to a negative number.
Exemplos
O exemplo de código a seguir usa a Position propriedade para gravar dados em um arquivo.The following code example uses the Position property to write data to a file.
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() );
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);
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))
Comentários
Definir essa propriedade funciona quando a CanSeek propriedade é true .Setting this property works when the CanSeek property is true.