MemoryStream.Position Propiedad

Definición

Obtiene o establece la posición actual dentro de la secuencia.

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 de propiedad

Posición actual dentro de la secuencia.

Excepciones

La posición se establece en un valor negativo o un valor mayor que Int32.MaxValue.

La secuencia está cerrada.

Ejemplos

Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase MemoryStream.

// Write the stream properties to the console.
Console::WriteLine( "Capacity = {0}, Length = {1}, "
"Position = {2}\n", memStream->Capacity.ToString(), memStream->Length.ToString(), memStream->Position.ToString() );
// Write the stream properties to the console.
Console.WriteLine(
    "Capacity = {0}, Length = {1}, Position = {2}\n",
    memStream.Capacity.ToString(),
    memStream.Length.ToString(),
    memStream.Position.ToString());
' Write the stream properties to the console.
Console.WriteLine( _
    "Capacity = {0}, Length = {1}, Position = {2}", _
    memStream.Capacity.ToString(), _
    memStream.Length.ToString(), _
    memStream.Position.ToString())

Se aplica a

Consulte también