UnmanagedMemoryStream.Position 属性

定义

获取或设置流中的当前位置。

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

属性值

流中的当前新位置。

例外

流已关闭。

位置设置为小于零的值,或者位置大于 Int32.MaxValue ,或者在添加到当前指针时导致溢出。

注解

初始化流时,此属性设置为零。

尽管可以将流的位置设置为超出流的容量,但无法使用 和 Write 方法访问该区域ReadRead 将返回 0,并将 Write 引发 NotSupportedException。 此支持主要用于与基本流操作的设计和代码兼容性。

适用于