Stream.Length 속성
정의
파생 클래스에서 재정의되면 스트림 바이트의 길이를 가져옵니다.When overridden in a derived class, gets the length in bytes of the stream.
public:
abstract property long Length { long get(); };
public abstract long Length { get; }
member this.Length : int64
Public MustOverride ReadOnly Property Length As Long
속성 값
스트림 길이(바이트)를 나타내는 long 값입니다.A long value representing the length of the stream in bytes.
예외
Stream
에서 파생된 클래스가 검색을 지원하지 않는 경우A class derived from Stream
does not support seeking.
스트림이 닫힌 후에 메서드가 호출되었습니다.Methods were called after the stream was closed.