Stream.Position Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets or sets the position within the current stream.
public:
abstract property long Position { long get(); void set(long value); };
public abstract long Position { get; set; }
member this.Position : int64 with get, set
Public MustOverride Property Position As Long
Property Value
The current position within the stream.
Exceptions
An I/O error occurs.
The stream does not support seeking.
Methods were called after the stream was closed.
Remarks
The stream must support seeking to get or set the position. Use the CanSeek property to determine whether the stream supports seeking.
Seeking to any location beyond the length of the stream is supported.
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET