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.